Hello Support, We are using GraphQL query to retrieve Deal Collection based on the filters. We have applied the same filter on UI. On UI it is fetching 137 Deals where on GraphQL it is only fetching 60 records only.
Here i am attaching the query that is used to fetch deals.
query dealforcompany {
CRM {
deal_collection(
filter: {dealstage__in: ["closedwon", "133731357", "143663907", "23925584"], pipeline__in: ["default", "9904898", "74974003"]}
limit: 500
offset: 0
) {
items {
hs_object_id
dealname
dealstage
pipeline
dealtype
number_of_licenses
pid
associations {
company_collection__primary {
items {
name
lifecyclestage
number_of_paid_student_licenses__c
pid_text__c
account_type__c
}
}
}
}
}
}
}