15 lines
244 B
GraphQL
15 lines
244 B
GraphQL
mutation CreateVoiceExperience($input: CreateVoiceExperienceInput!) {
|
|
createVoiceExperience(input: $input) {
|
|
id
|
|
status
|
|
durationSeconds
|
|
place {
|
|
id
|
|
googlePlaceId
|
|
name
|
|
latitude
|
|
longitude
|
|
}
|
|
}
|
|
}
|