Graphene-Django:想用graphene.ObjectType进行自定义查询

时间:2017-08-31 19:16:43

标签: django graphene-python

我目前有一个这种形式的工作查询:



class Query(graphene.AbstractType):
algorithms = graphene.String(id=graphene.String())


def resolve_algorithms(self, args, context, info):

  # Much code here that goes to external server to get data

  algorithms = {}  # Instantiate dictionary

  # Code here to populate this dictionary

  return algorithms




虽然这确实有效,但它是一个kludge,因为我强迫字典对象作为字符串返回。我四处寻找文章,向我展示如何将类型更改为graphene.ObjectType()但没有成功。

有人知道怎么办?

罗伯特

0 个答案:

没有答案