Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 490 Bytes

GRAPHQL_OPERATIONS.md

File metadata and controls

40 lines (31 loc) · 490 Bytes

Extracted GraphQL Operations

Queries

AppQuery

query AppQuery {
  popularPosts {
    id
    ...Post_Post
  }
}

fragment Post_Post on Post {
  title
  author {
    name
  }
}

From src/App.tsx:24:24

Fragments

Post_Post

fragment Post_Post on Post {
  title
  author {
    name
  }
}

From src/App.tsx:5:31


Extracted by ts-graphql-plugin