MembershipType
The
MembershipType
object is the GraphQL data type of the input to our myTeamMembers query. It provides us with all the details we need to create a new membership.input MembershipType {
id: String
user: UserType
}
Field | Input Type | Description |
---|---|---|
id | String | id of membership |
user | user associated with membership |
Last modified 1yr ago