Mutation
mutation CreateWelcome($input: CreateWelcomeInput!) {
createWelcome(input: $input) {
clientMutationId
errors
member {
avatarUrl
badges {
avatarUrl
color
createdAt
creator {
__typename
}
customField {
__typename
}
description
}
conversations {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
customFieldResponses {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
dailyVisitStreak {
count
currentMilestone {
__typename
}
nextMilestone {
__typename
}
}
directMessages {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
}
outcome
}
}Variables
{
"input": {
"memberId": "id"
}
}Response
{
"data": {
"createWelcome": {
"clientMutationId": "string",
"errors": [
"string"
],
"member": {
"avatarUrl": "string",
"badges": [
{
"avatarUrl": "string",
"color": "string",
"createdAt": "value",
"creator": {
"__typename": "User"
},
"customField": {
"__typename": "CustomField"
},
"description": "string"
}
],
"conversations": {
"edges": [
{
"__typename": "PublicConversationEdge"
}
],
"nodes": [
{
"__typename": "PublicConversation"
}
],
"pageInfo": {
"__typename": "PublicConversationPageInfo"
}
},
"customFieldResponses": {
"edges": [
{
"__typename": "MemberCustomFieldResponseEdge"
}
],
"nodes": [
{
"__typename": "MemberCustomFieldResponse"
}
],
"pageInfo": {
"__typename": "PageInfo"
}
},
"dailyVisitStreak": {
"count": 1,
"currentMilestone": {
"__typename": "StreakMilestone"
},
"nextMilestone": {
"__typename": "StreakMilestone"
}
},
"directMessages": {
"edges": [
{
"__typename": "PrivateConversationEdge"
}
],
"nodes": [
{
"__typename": "PrivateConversation"
}
],
"pageInfo": {
"__typename": "PrivateConversationPageInfo"
}
}
},
"outcome": "SKIPPED_LIMITED_MEMBER"
}
}
}Mutations
createWelcome
Welcome a member with a welcome cheer. Host/Moderator only.
MUTATION
createWelcome(input: CreateWelcomeInput!): CreateWelcomePayloadArguments
input
CreateWelcomeInput!
required
Parameters for CreateWelcome
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
member
outcome
Mutation
mutation CreateWelcome($input: CreateWelcomeInput!) {
createWelcome(input: $input) {
clientMutationId
errors
member {
avatarUrl
badges {
avatarUrl
color
createdAt
creator {
__typename
}
customField {
__typename
}
description
}
conversations {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
customFieldResponses {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
dailyVisitStreak {
count
currentMilestone {
__typename
}
nextMilestone {
__typename
}
}
directMessages {
edges {
__typename
}
nodes {
__typename
}
pageInfo {
__typename
}
}
}
outcome
}
}Variables
{
"input": {
"memberId": "id"
}
}Response
{
"data": {
"createWelcome": {
"clientMutationId": "string",
"errors": [
"string"
],
"member": {
"avatarUrl": "string",
"badges": [
{
"avatarUrl": "string",
"color": "string",
"createdAt": "value",
"creator": {
"__typename": "User"
},
"customField": {
"__typename": "CustomField"
},
"description": "string"
}
],
"conversations": {
"edges": [
{
"__typename": "PublicConversationEdge"
}
],
"nodes": [
{
"__typename": "PublicConversation"
}
],
"pageInfo": {
"__typename": "PublicConversationPageInfo"
}
},
"customFieldResponses": {
"edges": [
{
"__typename": "MemberCustomFieldResponseEdge"
}
],
"nodes": [
{
"__typename": "MemberCustomFieldResponse"
}
],
"pageInfo": {
"__typename": "PageInfo"
}
},
"dailyVisitStreak": {
"count": 1,
"currentMilestone": {
"__typename": "StreakMilestone"
},
"nextMilestone": {
"__typename": "StreakMilestone"
}
},
"directMessages": {
"edges": [
{
"__typename": "PrivateConversationEdge"
}
],
"nodes": [
{
"__typename": "PrivateConversation"
}
],
"pageInfo": {
"__typename": "PrivateConversationPageInfo"
}
}
},
"outcome": "SKIPPED_LIMITED_MEMBER"
}
}
}⌘I