Created
May 15, 2020 16:26
-
-
Save dabit3/3d3bf440d6e73b4ee36d19f6a51a5b6c to your computer and use it in GitHub Desktop.
Products ordered by date
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 Product @model | |
@key(name: "productSortedIndex", fields: ["baseType", "createdAt"], queryField: "productsSorted") { | |
id: ID | |
name: String | |
price: Float | |
createdAt: String | |
baseType: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment