Created
September 26, 2018 22:07
-
-
Save shrirambalakrishnan/56dcac103c40052c69cd55fb4bf9c80d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Types::MovieType = GraphQL::ObjectType.define do | |
name 'Movie' | |
description 'Movie Details' | |
field :id, !types.ID | |
field :name, !types.String | |
field :genre, types.String | |
field :year, types.String | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment