CreateLocationPayload
ObjectAutogenerated return type of CreateLocation.
mutation { organization(id: $organizationId) { project(id: $projectId) { createLocation } } }
Example
mutation CreateLocation(
$organizationId: ID!
$projectId: ID!
$input: CreateLocationInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
createLocation(input: $input) {
errors
}
}
}
}