INPUT_OBJECT

LocationCreateInput

Input to create a new location

link GraphQL Schema definition

  • input LocationCreateInput {
  • # The address of the location, as displayed to the visitor
  • address: String!
  • # The latitude of this location
  • lat: Float!
  • # The longitude of this location
  • long: Float!
  • # The origin of the coordinates. If unsure, don't provide the attribute
  • coordinatesOrigin: LocationCoordinatesOrigin
  • }