graphql-idl-parser 0.1.1

A parser for the GraphQL IDL format.
1
2
3
4
5
6
7
8
9
10
11
# Autogenerated input type of UpdateTopics
input UpdateTopicsInput {
  # A unique identifier for the client performing the mutation.
  clientMutationId: String

  # The Node ID of the repository.
  repositoryId: ID!

  # An array of topic names.
  topicNames: [String!]!
}