Files
speckle-server/packages/frontend-2/lib/server/graphql/mutations.ts
T
Kristaps Fabians Geikins b02a07e2b6 feat: Frontend 2.0 MVP
2023-05-08 10:47:01 +03:00

8 lines
222 B
TypeScript

import { graphql } from '~~/lib/common/generated/gql'
export const inviteServerUserMutation = graphql(`
mutation InviteServerUser($input: [ServerInviteCreateInput!]!) {
serverInviteBatchCreate(input: $input)
}
`)