Skip to content

Commit

Permalink
wip: add Mutation to create Activity
Browse files Browse the repository at this point in the history
  • Loading branch information
samuraikun committed Jan 31, 2024
1 parent 6e159c0 commit 602928a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions app/activity/create/graphql/mutation/createActivity.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
mutation createActivity(
$trip_id: UUID!
$title: String!
$time_from: Datetime
$time_to: Datetime
$address: String
$url: String
$memo: String
$cost: BigFloat
) {
insertIntoactivitiesCollection(
objects: [
{
trip_id: $trip_id
title: $title
time_from: $time_from
time_to: $time_to
address: $address
url: $url
memo: $memo
cost: $cost
image_url: $image_url
}
]
) {
records {
__typename
id
title
}
}
}

0 comments on commit 602928a

Please sign in to comment.