aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/schema/types/author.types.ts
blob: 53c0bb78295ae0e59d996ec557293505b0ab1865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export const authorTypes = `type User {
  avatar(
    forceDefault: Boolean
    rating: AvatarRatingEnum
    size: Int = 96
  ): Avatar
  databaseId: Int!
  name: String
  url: String
}
type NodeWithAuthorToUserConnectionEdge {
  node: User!
}`;