Skip to content

Instantly share code, notes, and snippets.

@valikos
Created May 5, 2019 19:22
Show Gist options
  • Save valikos/7f90e27f8d06eb823238b038d2194a5f to your computer and use it in GitHub Desktop.
Save valikos/7f90e27f8d06eb823238b038d2194a5f to your computer and use it in GitHub Desktop.
gql-4
module Types
class CharacterType < BaseObject
field :first_name, String, null: false
field :last_name, String, null: true
field :friends, [Types::CharacterType], null: true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment