graphql-python / graphene-gae

GraphQL Support for Google AppEngine [DEPRECATED - Looking for maintainers]

Home Page:http://docs.graphene-python.org/projects/gae/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do you filter?

steinnat opened this issue · comments

I know that with graphene Django you can use filter fields but, what about if were using NDBObjectType
is there a way to still use filters??

class SearchPropertyType(NdbObjectType):
class Meta:
model = SearchPropertyModel
fields = ["points"]
interfaces = (relay.Node,)

exclude_fields = [] works.