Skip to content

Instantly share code, notes, and snippets.

@rphansen91
Created June 30, 2020 06:08
Show Gist options
  • Save rphansen91/b619d1e805a42a667e3489c59dfe9977 to your computer and use it in GitHub Desktop.
Save rphansen91/b619d1e805a42a667e3489c59dfe9977 to your computer and use it in GitHub Desktop.
MountainSchema.ts
import gql from 'graphql-tag'
export const mountainSchema = gql`
type Mountain @collection(name: "mountains", crud: true) {
id: ObjectId
name: String @insert @set @filter
meters: Float @insert @set @filter
feet: Float @insert @set @filter
location: String @insert @set @filter
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment