Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 895 Bytes

GRAPHQL_OPERATIONS.md

File metadata and controls

54 lines (41 loc) · 895 Bytes

Extracted GraphQL Operations

Queries

AppQuery

query AppQuery($first: Int!) {
  viewer {
    repositories(first: $first) {
      nodes {
        id
        ...RepositoryItem_Repository @nonreactive
      }
    }
  }
}

fragment RepositoryItem_Repository on Repository {
  name
  description
}

From src/App.tsx:6:19

Mutations

UpdateMyRepository

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

From src/App.tsx:19:22

Fragments

RepositoryItem_Repository

fragment RepositoryItem_Repository on Repository {
  name
  description
}

From src/RepositoryItem.tsx:4:53


Extracted by ts-graphql-plugin