GraphQL API - OR statements?

Is there any way to do “or” like statements on different fields?

Example:

I would like to have requests completed e.g. this week/month etc and started during the same timeframe (but not yet completed):

  autoCompletedAt: {greaterOrEquals: $startDate, lessOrEquals: $endDate},
  autoCycleStart: {greaterOrEquals: $startDate, lessOrEquals: $endDate}

Hi, @4erkas

It is possible by using aliases: Fibery GraphQL API

Thank you, will be using aliases as alternative to OR statements.