Код IT Загрузка примера кода…

Plain text main.graphql
query GetUserById($userId: ID!) {
  user(id: $userId) {
    id
    name
    posts {
      id
      title
      content
    }
  }
}

# Variables —
# {
#   "userId" — "1"
# }
query GetUserById($userId: ID!) {
  user(id: $userId) {
    id
    name
    posts {
      id
      title
      content
    }
  }
}

# Variables —
# {
#   "userId" — "1"
# }