UNPKG

@leosprograms/vf-graphql-holochain

Version:

GraphQL schema bindings for the Holochain implementation of ValueFlows

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