Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 468 Bytes

GRAPHQL_OPERATIONS.md

File metadata and controls

32 lines (26 loc) · 468 Bytes

Extracted GraphQL Operations

Queries

PopularPosts_Query

query PopularPosts_Query {
  popularPosts {
    id
    ...PostSummary_Post
  }
}

fragment PostSummary_Post on Post {
  id
  title
  author {
    name
    ...UserAvatar_User
  }
}

fragment UserAvatar_User on User {
  name
  avatarURL
}

From src/PopularPosts.tsx:6:24


Extracted by ts-graphql-plugin