```type GeoJson { id: ID! @id coordinates: [In...
# orm-help
b
Copy code
type GeoJson {
  id: ID! @id
  coordinates: [Int] @scalarList(strategy: RELATION)
  type: String!
}
How would the mutation to create a GeoJson look like?