Skip to content

Instantly share code, notes, and snippets.

@paramsinghvc
Created August 16, 2022 13:17
Show Gist options
  • Save paramsinghvc/ade2d90c025760645ed6fe6883cfde78 to your computer and use it in GitHub Desktop.
Save paramsinghvc/ade2d90c025760645ed6fe6883cfde78 to your computer and use it in GitHub Desktop.
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type User {
id: String!
displayName: String!
description: String!
dob: DateTime!
photos: [Photo!]!
albums: [Album!]!
}
scalar DateTime
type Album {
id: String!
name: String!
photos: [Photo!]!
createdAt: DateTime!
updatedAt: DateTime!
user: User!
}
type Photo {
id: String!
name: String!
album: Album!
createdAt: DateTime!
updatedAt: DateTime!
user: User!
}
type Query {
me: User!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment