Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 255 Bytes

File metadata and controls

17 lines (16 loc) · 255 Bytes
description Create a new user on Intercom.
mutation IntercomCreateUserMutation {
  intercom {
    createUser(input: {email: "newuser@example.com", name: "New User"}) {
      user {
        id
        email
      }
    }
  }
}