Skip to content

Instantly share code, notes, and snippets.

@smoak
Created March 5, 2018 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smoak/8612baac1bb4604a508a6f128a013f8f to your computer and use it in GitHub Desktop.
Save smoak/8612baac1bb4604a508a6f128a013f8f to your computer and use it in GitHub Desktop.
object :user do
field :id, non_null(:id)
end
object :group do
field :id, non_null(:id)
field :members, list_of(:user)
end
query do
field :user, :user
field :groups, list_of(:group)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment