Skip to main content

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Create Server mutation.

Operation details

FieldValue
NamecreateServer
GroupServers
TypeMutation
SignaturecreateServer(input: CreateServerInput!): Server!

Playground

Query

Query
mutation CreateServer($input: CreateServerInput!) {
  createServer(input: $input) {
    id
    status
    createdAt
    updatedAt
    environmentIds
    hostname
  }
}

Variables

Variables
{
  "input": {
    "projectId": "",
    "environmentId": ""
  }
}