query {
  operatorID
  correlationID
  marketingSource(
    skip: 500
    take: 500
    where: {
      and: [
        { lastUpdated: { gt: "2024-01-01" } }
        {
          or: [
            { marketingSourceURLURI: { contains: "casino" } }
            { marketingSourceURLURI: { contains: "red" } }
            { marketingSourceURLURI: { contains: "bet" } }
          ]
        }
      ]
    }
  ) {
    totalCount
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
    items {
      marketingSourceId
      lastUpdated
      marketingSourceName
      marketingSourceURLURI
      marketingSourceType
      marketingSourceCategory
      offlineTrackingCode
      affiliateId
      rewardPlanId
      usedCostPerMedia
      status
    }
  }
}