postgresql 如何用apollo / graphql实现节点查询解析器

ogsagwnx  于 2023-08-04  发布在  PostgreSQL
关注(0)|答案(2)|浏览(137)

我正在为graphql实现一个node interface--一个非常标准的设计模式。
寻找有关实现graphql节点查询解析器的最佳方法的指导
第一个月
我正在努力解决的主要问题是如何编码/解码ID和类型名,以便我们可以找到正确的表/集合进行查询。
目前我使用PostgreSQL uuid策略和pgcrytpo来生成id。
在应用程序中的正确接缝是什么?:
1.可以在数据库的主键生成中完成
1.可以在graphql接缝处完成(可能使用访问者模式)
一旦选择了最佳接缝:
1.如何/在哪里编码/解码?
注意我的stack是:

  • ApolloClient/Server(来自graphql-yoga)
  • 节点
  • TypeORM
  • PostgreSQL
4zcjmb1e

4zcjmb1e1#

暴露给客户端的id(全局对象id)不会持久化在后端--编码和解码应该由GraphQL服务器自己完成。下面是一个基于relay的粗略示例:

import Foo from '../../models/Foo'

function encode (id, __typename) {
  return Buffer.from(`${id}:${__typename}`, 'utf8').toString('base64');
}

function decode (objectId) {
  const decoded = Buffer.from(objectId, 'base64').toString('utf8')
  const parts = decoded.split(':')
  return {
    id: parts[0],
    __typename: parts[1],
  }
}

const typeDefs = `
  type Query {
    node(id: ID!): Node
  }
  type Foo implements Node {
    id: ID!
    foo: String
  }
  interface Node {
    id: ID!
  }
`;

// Just in case model name and typename do not always match
const modelsByTypename = {
  Foo,
}

const resolvers = {
  Query: {
    node: async (root, args, context) => {
      const { __typename, id } = decode(args.id)
      const Model = modelsByTypename[__typename]
      const node = await Model.getById(id)
      return {
        ...node,
        __typename,
      };
    },
  },
  Foo: {
    id: (obj) => encode(obj.id, 'Foo')
  }
};

字符串
注意:通过返回__typename,我们让GraphQL的默认resolveType行为确定接口返回的类型,因此不需要为__resolveType提供解析器。
编辑:将id逻辑应用于多种类型:

function addIDResolvers (resolvers, types) {
  for (const type of types) {
    if (!resolvers[type]) {
      resolvers[type] = {}
    }
    resolvers[type].id = (obj) => encode(obj.id, type)
  }
}

addIDResolvers(resolvers, ['Foo', 'Bar', 'Qux'])

mdfafbf1

mdfafbf12#

@Jonathan我可以分享我的一个实现,你可以看看你的想法。这是在客户端上使用graphql-jsMongoDBrelay

/**
 * Given a function to map from an ID to an underlying object, and a function
 * to map from an underlying object to the concrete GraphQLObjectType it
 * corresponds to, constructs a `Node` interface that objects can implement,
 * and a field config for a `node` root field.
 *
 * If the typeResolver is omitted, object resolution on the interface will be
 * handled with the `isTypeOf` method on object types, as with any GraphQL
 * interface without a provided `resolveType` method.
 */
export function nodeDefinitions<TContext>(
  idFetcher: (id: string, context: TContext, info: GraphQLResolveInfo) => any,
  typeResolver?: ?GraphQLTypeResolver<*, TContext>,
): GraphQLNodeDefinitions<TContext> {
  const nodeInterface = new GraphQLInterfaceType({
    name: 'Node',
    description: 'An object with an ID',
    fields: () => ({
      id: {
        type: new GraphQLNonNull(GraphQLID),
        description: 'The id of the object.',
      },
    }),
    resolveType: typeResolver,
  });

  const nodeField = {
    name: 'node',
    description: 'Fetches an object given its ID',
    type: nodeInterface,
    args: {
      id: {
        type: GraphQLID,
        description: 'The ID of an object',
      },
    },
    resolve: (obj, { id }, context, info) => (id ? idFetcher(id, context, info) : null),
  };

  const nodesField = {
    name: 'nodes',
    description: 'Fetches objects given their IDs',
    type: new GraphQLNonNull(new GraphQLList(nodeInterface)),
    args: {
      ids: {
        type: new GraphQLNonNull(new GraphQLList(new GraphQLNonNull(GraphQLID))),
        description: 'The IDs of objects',
      },
    },
    resolve: (obj, { ids }, context, info) => Promise.all(ids.map(id => Promise.resolve(idFetcher(id, context, info)))),
  };

  return { nodeInterface, nodeField, nodesField };
}

字符串
然后:

import { nodeDefinitions } from './node';

const { nodeField, nodesField, nodeInterface } = nodeDefinitions(
  // A method that maps from a global id to an object
  async (globalId, context) => {
    const { id, type } = fromGlobalId(globalId);

    if (type === 'User') {
      return UserLoader.load(context, id);
    }

    ....
    ...
    ...
    // it should not get here
    return null;
  },
  // A method that maps from an object to a type
  obj => {

    if (obj instanceof User) {
      return UserType;
    }

    ....
    ....

    // it should not get here
    return null;
  },
);


load方法解析实际对象。这一部分你将有更具体的工作与您的数据库等。如果不清楚,你可以问!希望有帮助:)

相关问题