the-events-calendar / ql-events

The Events Calendar binding to WPGraphQL
15 stars 7 forks source link

Query Events by Venue #11

Closed kidunot89 closed 4 years ago

kidunot89 commented 4 years ago

Adds "venuesIn" and "venuesNotIn" arguments to the Events connections for filtering by Venue ID.

Example Usage

{
  events(where:{ venuesIn: [1004,1422] }) {
    nodes {
        id 
    }
  }
}

Issues closed

9