API Stability Long-Term

The resendInvitation() GraphQL mutation is used to resend an invite to a pending user of LogScale.

For more information on user authorization, see the Manage users & permissions documentation page.

Syntax

Below is the syntax for the resendInvitation() mutation field:

graphql
resendInvitation(
     input: TokenInput!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  resendInvitation( input:
    { token: "abc123" } )
}
Example Responses
Show:
json
{
  "data": {
    "resendInvitation": true
  }
}

Given Datatypes

For TokenInput, there's one parameter that may be given. It's described in the table here:

Table: TokenInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 20, 2024
tokenstringyes Long-TermThe unique token to use.