Last active
March 1, 2018 14:52
-
-
Save LawJolla/89b4dc810657638960fc2ccb05a829f3 to your computer and use it in GitHub Desktop.
Updated schema
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
| type Vehicle { | |
| id: ID! | |
| year: Int! | |
| make: String! | |
| model: Int! | |
| askingPrice: Float @isAuthenticated | |
| costBasis: Float @hasRole(role: “MANAGER”) | |
| numberOfOffers: Int @hasRole(role: “MANAGER”) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment