CreateEventInput
No description
input CreateEventInput {
event_type: EventType!
name: String!
description: String
starts_at: String!
ends_at: String!
registration_deadline: String
time_zone: String!
organizer_id: ID
categories: JSON
status: EventStatus
capacity: Int!
registration_link: String
physicalEvent: CreatePhysicalEventHasOne!
marketing_campaign_id: ID
}
Fields
CreateEventInput.event_type
● EventType!
non-null enum
CreateEventInput.name
● String!
non-null scalar
CreateEventInput.description
● String
scalar
CreateEventInput.starts_at
● String!
non-null scalar
CreateEventInput.ends_at
● String!
non-null scalar
CreateEventInput.registration_deadline
● String
scalar
CreateEventInput.time_zone
● String!
non-null scalar
CreateEventInput.organizer_id
● ID
scalar
CreateEventInput.categories
● JSON
scalar
CreateEventInput.status
● EventStatus
enum
CreateEventInput.capacity
● Int!
non-null scalar
CreateEventInput.registration_link
● String
scalar
CreateEventInput.physicalEvent
● CreatePhysicalEventHasOne!
non-null input
CreateEventInput.marketing_campaign_id
● ID
scalar
Member Of
createEvent
mutation