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
It would be nice if when we use [UseFiltering] that any fields that are marked deprecated in the record should be deprecated in the generated filter input type.
The solution you'd like
For example if I had:
[UseFiltering]publicasyncTask<Connection<Book>?>GetBooks( ...){ ...}publicrecordBook(intId,string?Name,[property:Obsolete("don't use this")]string?Foo);
then the schema should have:
inputBookFilterInput {
# ...Foo: StringOperationFilterInput@deprecated("don't use this");
}