Skip to content

allDocumentTypes

Returns all the document types for an account.

Returns

[DocumentAttribute!]!

Sample

query {
  allDocumentTypes {
    id
    name
    type
  }
}
{}
{
  "data": {
    "allDocumentTypes": [
      {
        "id": "00000000-0000-0000-0000-000000000000",
        "name": "example-string",
        "type": "ATTRIBUTE_TYPE_UNSPECIFIED"
      }
    ]
  }
}