Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 838 Bytes

GRAPHQL_OPERATIONS.md

File metadata and controls

52 lines (39 loc) · 838 Bytes

Extracted GraphQL Operations

Queries

GitHubQuery

fragment RepositoryFragment on Repository {
  description
}

query GitHubQuery($first: Int!) {
  viewer {
    repositories(first: $first) {
      nodes {
        id
        ...RepositoryFragment
      }
    }
  }
}

From src/index.tsx:11:19

Mutations

UpdateMyRepository

mutation UpdateMyRepository($repositoryId: ID!) {
  updateRepository(input: {repositoryId: $repositoryId}) {
    clientMutationId
  }
}

From src/index.tsx:25:22

Fragments

RepositoryFragment

fragment RepositoryFragment on Repository {
  description
}

From src/index.tsx:5:32


Extracted by ts-graphql-plugin