Closed ncrypthic closed 5 years ago
This implements enhancement for #2
Now the EntitySearchInput will have related property filter, and the executor is able to apply related property filters.
EntitySearchInput
type Post { title: String!, } type User { username: String!, posts: [Post] } input PostSearchInput { title: [SearchFilterInput] } input UserSearchInput { username: [SearchFilterInput], posts: PostSearchInput } input UserPageInput { search: UserSearchInput }
This implements enhancement for #2
Now the
EntitySearchInput
will have related property filter, and the executor is able to apply related property filters.