ql-events icon indicating copy to clipboard operation
ql-events copied to clipboard

The Events Calendar binding to WPGraphQL

Results 34 ql-events issues
Sort by recently updated
recently updated
newest added

When we enabled the `The Events Calendar: Community Events` plugin, our builds started failing during the Gatsby `createPages` process. We get this error when it fails: ```error There was an...

Hi, I am not sure if I am doing everything right, but it seems to me that Attendees are accessibel without any authorization with graphql. For example: orders{ nodes{ total...

Trying to replicate the Who's Attending block, as well as display the associated event on a user's ticket, but it seems that information isnt part of the various ticket nodes....

Registers [Pro Custom Fields ](https://theeventscalendar.com/knowledgebase/k/pro-additional-fields/) to the GraphQL `Event`. For ease of use, the fields are registered using their label, as the field name defined in the database is semantically...

Adds event connections to the various attendee types. Closes #24 . 1. The `Event` type has `rSVPAttendees`, `payPalAttendees`, and `wooAttendees`. 2. `rSVPAttendees`, `payPalAttendees`, and `wooAttendees` can now be filtered by...

Adds latitude and longitude coordinates to the Venue.

Hi, thank you for this great plugin. I am using this plugin for a personal project and have found that event queries containing where condition are not working as expected....

Getting an issue in [`Ticket_Connection_Resolver::get_ticket_args()`](https://github.com/simplur/ql-events/blob/master/includes/data/connection/class-ticket-connection-resolver.php#L33). When the query is run in Graphiql, `is_object( $source)` is evaluating to false for some reason, which causes the $connection_type to be undefined, and throws...

It would be great to provide event query examples and show which ones work and which ones do not quite work yet. Examples could include: • events happening today •...

Trying to query past events, but its returning an empty array. Query: ``` { events(where: {endDateQuery: {before: {year: 2020}}}) { nodes { title startDate } } } ``` Response: ```...