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
If you create a query twice from the same class instance in the ts gridify client, filters such as "filter name by contains abc" are created twice.
E.g.
queryOptions: (queryBuilder)=>{return{queryKey: ['demo',queryBuilder.build()],// all fine herequeryFn: ()=>{console.log('query',queryBuilder.build());// all filters are applied twice},};},
NOTE: Created ticket for my own peace, I'll investigate further when I got the time for it.
Steps to reproduce
Call any instance twice or more and observe subsequent return values.