graphql-python / graphene-gae

GraphQL Support for Google AppEngine [DEPRECATED - Looking for maintainers]
http://docs.graphene-python.org/projects/gae/en/latest/
BSD 3-Clause "New" or "Revised" License
117 stars 14 forks source link

How do you filter? #42

Closed steinnat closed 4 years ago

steinnat commented 5 years ago

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,)

steinnat commented 4 years ago

exclude_fields = [] works.