The Query
The following query returns only the Contract User Defined Fields graph node, providing the Contract Id, User Defined Field ID and the value. Since this is a
contract value, we are using the numeric value, but we could alternatively return the "valueAsString" field, which would return a formatted string value for the field -
in this case, because the Contract Value is normally defined as a Currency field, the value would be returned as a formatted currency string such as "$40,000".
query getContract(
$getContractFilter: ContractFilterInput
$getFirst: Int
$getAfter: String
) {
contractDetails(
inputFilter: $getContractFilter
first: $getFirst
after: $getAfter
) {
pageInfo {
hasNextPage
hasPreviousPage
}
nodes {
contractUserDefinedFields {
contractId
userDefinedFieldId
numericValue
}
}
}
}