Last active
February 5, 2018 15:33
-
-
Save adamjleonard/8a1a90449c8ddda18bba016231d054fe 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
# In the app/graphql/types/movie_type.rb file | |
Types::MovieType = GraphQL::ObjectType.define do | |
name “Movie” | |
field :id, !types.ID | |
field :title, !types.String | |
field :description, types.String | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment