add ids filter to queries
May 26th, 2025
  • people query have new filter ids.
  • organisations query have new filter ids.
  • branches query have new graphql argument ids.
  • tagLists query have new graphql argument ids.
  • lcAlignments query have new graphql argument ids.
Breaking Change:
  • in lcAlignments query now id is renamed to office_id.
query AssignmentIndexQuery($id: ID!) {
  lcAlignments(office_id: $id, ids: ["870", "3514", "3555"]) {
    id
    keywords
    lc {
      name
    }
  }
}

New query:
  • a new query for campaigns is added with graphql argument ids.
query AllCampaigns {
  campaigns(ids: ["1"]) {
    id
  }
}

X
Crafted by