1

使用:

  • Django 3.x [Django-Filters 2.2.0,graphene-django 2.8.0,graphql-relay 2.0.1]
  • Vue 2.x [Vue-Apollo]

在我的 graphQL 搜索中应用了一些过滤器(iContains 等)后,我尝试更改或操作connection_args类似firstafter. 我可以在我的解析器上获取字典,就像{'first': 2, 'name__icontains': 'eagle'}我在 IDE 中输入的值一样。如您所见(示例 1 /def resolve_all_birds2)我已经将其用于逻辑。但我不明白在哪里操作 GraphQLArgument 的状态beforeafter first. last继电器自带的功能?

示例 1

class ExtendedConnection(Connection):

    class Meta:
        abstract = True

    total_count = Int()
    edge_count = Int()

    def resolve_total_count(root, info, **kwargs):
        return root.length

    def resolve_edge_count(root, info, **kwargs):
        return len(root.edges)

class Birds2Node(DjangoObjectType):
    class Meta:
        model = Birds
        filter_fields =  {
            'id':  ['exact', 'icontains'],
            'name': ['exact', 'icontains', 'istartswith', 'iendswith'],
        }

        interfaces = (relay.Node, )
        connection_class = ExtendedConnection

    # --- CUSTOM FIELDS -->
    # pkey = _db primary key 
    pKey = Int()
    def resolve_pKey(parent, info):
        return parent.pk

    # qRank = Item Rank in Edge Array
    qRank = Int()
    def resolve_qRank(parent, info, **kwargs):
        return info.path[2]

class Birds2Query(ObjectType):
    birds2 = relay.Node.Field(Birds2Node)
    all_birds2 = DjangoFilterConnectionField(Birds2Node)


    def resolve_all_birds2(self, info, **kwargs):
        if 'name__icontains' in kwargs:
            nameIcon = kwargs['name__icontains']
            nameIconBool = bool(nameIcon.strip()) # if blanks turns False
            if nameIconBool == False: # has blanks         
                return Birds.objects.filter(name=None)
            pass

        if 'name__istartswith' in kwargs:
            nameIsta = kwargs['name__istartswith']
            nameIstaBool = bool(nameIsta.strip()) # if blanks turns False
            if nameIstaBool == False: # has blanks         
                return Birds.objects.filter(name=None)
            pass      

        return 

例如,在我的 IDE 中,我声明allBirds2(first: 2, name_Icontains: "a")...我可以使用解析器通过 **kwargs 或通过 args 将这些值作为字典获取 def resolve_all_birds2(self, info, first, name_icontains):,到目前为止,我可以操纵我的 ModelQuery,它每个 Edge 只返回 2 个。

但是想象一下我想在我的后端更改first: 2first: 10?我可以更新字典吗?文档意味着是的,但它似乎与您解决的 ObjectTypes (Fields) 密切相关。例如我试过这个......

示例 2

def resolve_all_birds2(self, info, **kwargs):
     <...>            
    return {'first': '20', 'name__icontains': 'd' }

输出 IDE: "message": "'dict' object has no attribute 'model'"

示例 3

def resolve_all_birds2(self, info, first, **kwargs):
     <...>            
    return f'20, {first}!'

输出 IDE: "message": "name 'first' is not defined",


问题

不幸的是,我在 graphene-python 文档中的 modelquery 上只发现了参数操作。所以我的问题是我如何在我的后端操纵字段的值beforeafter first. last,该中继提供并且已经在我的 IDE 中可用。在用户发送请求后,我是否必须在我的 DjangoObjectType 中额外声明它们或创建自定义节点来操作和更改值?

4

1 回答 1

0

添加中间件可能会允许在发出请求之后和运行查询之前更改输入值。石墨烯有一个例子:https ://docs.graphene-python.org/en/latest/execution/middleware/

但是,从文档中(对我来说)不清楚哪些参数将包含first您要操作的字段。

不过,似乎并不强烈推荐使用中间件方法,因为这是一个不受欢迎的副作用:https ://github.com/graphql-python/graphene/issues/1285

于 2021-09-08T09:01:24.577 回答