Files
speckle-server/packages/frontend-2/lib/intercom/graphql/queries.ts
T

14 lines
264 B
TypeScript

import { graphql } from '~/lib/common/generated/gql'
export const intercomActiveWorkspaceQuery = graphql(`
query IntercomActiveWorkspace($slug: String!) {
workspaceBySlug(slug: $slug) {
id
plan {
name
status
}
}
}
`)