Skip to content
createFamilyMutation
createFamily(name: String): FamilyResult!

Create a family (household) owned by the viewer, who becomes its first manager. A viewer can create more than one family.

Arguments

nameString

Returns

FamilyResult!

See FamilyResult for the full shape.

Try it

Example
Query
mutation CreateFamily($name: String) {
  createFamily(name: $name) {
    __typename
  }
}
Variables
{}
POST https://go.sessions.website/api/graphql
createFamily