Skip to content
This repository was archived by the owner on Apr 14, 2023. It is now read-only.
This repository was archived by the owner on Apr 14, 2023. It is now read-only.

Apollo Studio on fragments variables request error #1315

Description

@reaink

my request gql

query FindManyActor($withPhone: Boolean = false) {
  findManyActor {
    ...ActorFields
  }
}

fragment ActorFields on Actor {
  id
  name
  phone @include(if: $withPhone)
}

Some variables were not sent completely.

image

Real sent request
image
queryData

query FindManyActor                              {
  findManyActor {
    ...ActorFields
  }
}

fragment ActorFields on Actor {
  id
  name
  phone @include(if: $withPhone)
}
{
  "query": "query FindManyActor                              {\n  findManyActor {\n    ...ActorFields\n  }\n}\n\nfragment ActorFields on Actor {\n  id\n  name\n  phone @include(if: $withPhone)\n}",
  "variables": {},
  "operationName": "FindManyActor"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions