UNPKG

@leosprograms/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

15 lines (14 loc) 571 B
/** * Top-level queries relating to RecipeExchange * * @package: HoloREA * @since: 2019-09-12 */ import { DNAIdMappings } from '../types.js'; import { RecipeExchange, RecipeExchangeConnection } from '@leosprograms/vf-graphql'; import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'; declare const _default: (dnaConfig: DNAIdMappings, conductorUri: string) => { recipeExchange: (root: any, args: any) => Promise<RecipeExchange>; recipeExchanges: (root: any, args: PagingParams) => Promise<RecipeExchangeConnection>; }; export default _default;