Retrieving choice lists

Choice lists of property descriptions can be selected as a field of the PropertyDescription interface returned by the previous query.
A client may want to cache choice lists and retrieve choice lists in a separate call as in this example. Choice lists can be retrieved by ID or name.
{ 
  choiceList(repositoryIdentifier:"OS1"
  identifier: "Entry Choices")
  {
    id
    dataType
    choiceValues
    {
      name
      choiceStringValue
    }
  }
}