You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Craft introduced column suffixes for new fields, but it seems like the GraphQL queries on Preparse fields aren't querying against the field column. Unsure if this is a Craft bug or Preparse Field bug.
EG: Our test query
{
events:entries(section:"events", calendarDatesEnd: "now", limit: 1){
title
... on events_default_Entry {
calendarDatesEnd
}
}
}
Returns the following SQL error
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'content.field_calendarDatesEnd' in 'where clause'
The column is actually content.field_calendarDatesEnd_urqjyipm because of the suffix Craft adds.
The text was updated successfully, but these errors were encountered:
Craft introduced column suffixes for new fields, but it seems like the GraphQL queries on Preparse fields aren't querying against the field column. Unsure if this is a Craft bug or Preparse Field bug.
EG: Our test query
Returns the following SQL error
The column is actually
content.field_calendarDatesEnd_urqjyipm
because of the suffix Craft adds.The text was updated successfully, but these errors were encountered: