Skip to content

Commit

Permalink
update vf-graphql to 0.9.0-alpha.11 via forked npm package
Browse files Browse the repository at this point in the history
  • Loading branch information
LeosPrograms committed Jul 19, 2024
1 parent c0d2f13 commit 862148c
Show file tree
Hide file tree
Showing 61 changed files with 369 additions and 77 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

## NPM modules 0.0.1-alpha.21

- Republishing of 0.0.1-alpha.17-20 to fix additional misconfiguration of `@valueflows/vf-graphql-holochain` as an older ES6 module.
- Republishing of 0.0.1-alpha.17-20 to fix additional misconfiguration of `@leosprograms/vf-graphql-holochain` as an older ES6 module.

## NPM modules 0.0.1-alpha.18..20 **(broken)** (`@vf-ui/graphql-client-holochain` only)

Expand All @@ -40,7 +40,7 @@

## NPM modules 0.0.1-alpha.16

- Updated `@valueflows/vf-graphql` to 0.9.0-alpha.9. [changelog](https://lab.allmende.io/valueflows/vf-schemas/vf-graphql/-/blob/sprout/CHANGELOG.md#090-alpha9)
- Updated `@leosprograms/vf-graphql` to 0.9.0-alpha.9. [changelog](https://lab.allmende.io/valueflows/vf-schemas/vf-graphql/-/blob/sprout/CHANGELOG.md#090-alpha9)
- Implemented a new `Decimal` GraphQL type using `big.js` for parsing numerical values.
- Updated `@graphql-tools/schema` and `@graphql-tools/merge` to latest versions.
- (failed) patch for `@vf-ui/graphql-client-holochain` to avoid importing `react` in Apollo dependencies.
Expand Down Expand Up @@ -70,6 +70,6 @@ While the external API remains compatible, these changes are backwards-incompati

First stable API release, considered the starting point for integrations.

Compatible with the NPM modules [`@vf-ui/graphql-client-holochain`](https://www.npmjs.com/package/@vf-ui/graphql-client-holochain) and [`@valueflows/vf-graphql-holochain`](https://www.npmjs.com/package/@valueflows/vf-graphql-holochain) at version 0.0.1-alpha.13. Prior versions of these modules were published during the (unstable) alpha testing phase down to 0.0.1-alpha.1 and should be considered 'unstable'.
Compatible with the NPM modules [`@vf-ui/graphql-client-holochain`](https://www.npmjs.com/package/@vf-ui/graphql-client-holochain) and [`@leosprograms/vf-graphql-holochain`](https://www.npmjs.com/package/@leosprograms/vf-graphql-holochain) at version 0.0.1-alpha.13. Prior versions of these modules were published during the (unstable) alpha testing phase down to 0.0.1-alpha.1 and should be considered 'unstable'.

Previous unstable alpha versions of the hREA Holochain components also exist from 0.0.1-alpha.1 through to 0.0.1-alpha.7.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

Using [holochain](https://holochain.org) for data storage, data integrity, networking, and runtime, hREA comes with an [adapter library for GraphQL in Javascript](https://www.npmjs.com/package/@vf-ui/graphql-client-holochain), which is the main way to interface with the hREA suite.

Releases of the Javascript GraphQL libraries happen through npm: [main](https://www.npmjs.com/package/@vf-ui/graphql-client-holochain) and [more customizable](https://www.npmjs.com/package/@valueflows/vf-graphql-holochain)
Releases of the Javascript GraphQL libraries happen through npm: [main](https://www.npmjs.com/package/@vf-ui/graphql-client-holochain) and [more customizable](https://www.npmjs.com/package/@leosprograms/vf-graphql-holochain)

Releases of the Holochain "hApp"s are here on Github, and can be found in the [releases page](https://github.com/h-REA/hREA/releases) (the ones that are prefixed `happ-`).

Expand Down
2 changes: 1 addition & 1 deletion docs/repository-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The [ValueFlows GraphQL spec](https://lab.allmende.io/valueflows/vf-schemas/vf-g

Though it exists outside of this repository and is co-governed by many stakeholders, it is worth mentioning here that ValueFlows GraphQL and the core [ValueFlows RDF vocabulary](https://lab.allmende.io/valueflows/valueflows/) are open protocols which accept proposals for improvement. Contributions to the domain model from non-technical authors are welcomed and encouraged.

If you are implementing systems which you'd like to be compatible with our interfaces and client applications, the [ValueFlows GraphQL NodeJS module](https://www.npmjs.com/package/@valueflows/vf-graphql) can be leveraged to build and validate implementations, and to export raw schema formats for injection into other software.
If you are implementing systems which you'd like to be compatible with our interfaces and client applications, the [ValueFlows GraphQL NodeJS module](https://www.npmjs.com/package/@leosprograms/vf-graphql) can be leveraged to build and validate implementations, and to export raw schema formats for injection into other software.



Expand Down
4 changes: 2 additions & 2 deletions modules/vf-graphql-holochain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This module provides a runtime-configurable generator function which returns a G

**1 instance of `bindSchema()` = 1 agent acting within 1 collaboration space**. It is important to remember this in an agent-centric environment, especially when composing multiple hREA collaboration spaces together to form "cross-membrane" interfaces.

It is expected that you will most often use this module in an [Apollo](https://apollographql.com/)-based application. In the simplest case, your app initialisation logic will probably look something like the `@vf-ui/graphql-client-holochain` module (also available in this repository), which wraps the `@valueflows/vf-graphql-holochain` schema in a `GraphQLClient` interface compatible with `@vf-ui/graphql-client-mock`.
It is expected that you will most often use this module in an [Apollo](https://apollographql.com/)-based application. In the simplest case, your app initialisation logic will probably look something like the `@vf-ui/graphql-client-holochain` module (also available in this repository), which wraps the `@leosprograms/vf-graphql-holochain` schema in a `GraphQLClient` interface compatible with `@vf-ui/graphql-client-mock`.

In most cases, you should be able to use `@vf-ui/graphql-client-holochain` directly from NPM. This module is for advanced usage in client applications seeking to overlay and interweave collaboration spaces in specific and nuanced ways.

Expand Down Expand Up @@ -65,7 +65,7 @@ In some cases, tooling may require low-level access to the GraphQL resolver call
import { makeExecutableSchema } from '@graphql-tools/schema'

import { generateResolvers, VfModule, hreaExtensionSchemas } from '@leosprograms/vf-graphql-holochain'
const { buildSchema, printSchema } = require('@valueflows/vf-graphql')
const { buildSchema, printSchema } = require('@leosprograms/vf-graphql')

const enabledVFModules = [VfModule.Measurement, VfModule.Knowledge, VfModule.Observation]
const conductorUri = '...'
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import generateResolvers from './resolvers/index.js'
import * as hreaExtensionSchemas from './schema-extensions.js'
import { mapZomeFn, autoConnect, openConnection, sniffHolochainAppCells, remapCellId } from './connection.js'
// @ts-ignore
import { buildSchema, printSchema } from '@valueflows/vf-graphql'
import { buildSchema, printSchema } from '@leosprograms/vf-graphql'

export {
// direct access to resolver callbacks generator for apps that need to bind to other GraphQL schemas
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
OrganizationResponse,
AccountingScope,
Person,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

// export type AgentResponse = OrganizationResponse
export interface AgentResponse {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/agreement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
AgreementCreateParams,
AgreementUpdateParams,
AgreementResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
agreement: AgreementCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/commitment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
CommitmentCreateParams,
CommitmentUpdateParams,
CommitmentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
commitment: CommitmentCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/economicEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
EconomicResourceCreateParams,
EconomicEventUpdateParams,
EconomicEventResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
event: EconomicEventCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/economicResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { mapZomeFn } from '../connection.js'
import {
EconomicResourceUpdateParams,
EconomicResourceResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface UpdateArgs {
resource: EconomicResourceUpdateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/fulfillment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
FulfillmentCreateParams,
FulfillmentUpdateParams,
FulfillmentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
fulfillment: FulfillmentCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/intent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
IntentCreateParams,
IntentUpdateParams,
IntentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
intent: IntentCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
PlanCreateParams,
PlanUpdateParams,
PlanResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
plan: PlanCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
ProcessCreateParams,
ProcessUpdateParams,
ProcessResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
process: ProcessCreateParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
ProcessSpecificationCreateParams,
ProcessSpecificationUpdateParams,
ProcessSpecificationResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
processSpecification: ProcessSpecificationCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
ProposalCreateParams,
ProposalUpdateParams,
ProposalResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
proposal: ProposalCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/proposedIntent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { deleteHandler } from './'

import {
ProposedIntentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateParams {
proposedIntent: CreateRequest,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/proposedTo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { deleteHandler } from './'

import {
ProposedToResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateParams {
proposedTo: CreateRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
ResourceSpecificationCreateParams,
ResourceSpecificationUpdateParams,
ResourceSpecificationResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
resourceSpecification: ResourceSpecificationCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/satisfaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
SatisfactionCreateParams,
SatisfactionUpdateParams,
SatisfactionResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
satisfaction: SatisfactionCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/mutations/unit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
UnitCreateParams,
UnitUpdateParams,
UnitResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export interface CreateArgs {
unit: UnitCreateParams,
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"@graphql-tools/schema": "^9.0.14",
"@graphql-tools/utils": "^9.1.4",
"@holochain/client": "=0.17.0-dev.9",
"@valueflows/vf-graphql": "0.9.0-alpha.9",
"@leosprograms/vf-graphql": "0.9.0-alpha.11",
"big.js": "^6.2.1",
"buffer": "^6.0.3",
"dataloader": "^1.4.0",
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Action,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
const read = mapZomeFn<ReadParams, Action>(dnaConfig, conductorUri, 'combined', 'action', 'get_action')
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
OrganizationConnection,
Person,
PersonConnection
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { AgentPubKey } from '@holochain/client'
import { AgentResponse } from '../mutations/agent'
import { AgentSearchInput, PagingParams } from '../resolvers/zomeSearchInputTypes.js'
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/agreement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Agreement, AgreementConnection, AgreementResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/commitment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Commitment, CommitmentConnection, CommitmentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/economicEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
EconomicEvent,
EconomicEventConnection,
EconomicEventResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/economicResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
EconomicResource,
EconomicResourceConnection,
EconomicResourceResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/fulfillment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Fulfillment, FulfillmentConnection, FulfillmentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/intent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Intent, IntentConnection, IntentResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

// :TODO: how to inject DNA identifier?
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
Plan,
PlanConnection,
PlanResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Process, ProcessConnection, ProcessResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
ProcessSpecification, ProcessSpecificationConnection, ProcessSpecificationResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/proposal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
ProposedIntent,
ProposalResponse,
ProposalConnection,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
ResourceSpecification, ResourceSpecificationConnection, ResourceSpecificationResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/satisfaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Satisfaction, SatisfactionConnection, SatisfactionResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/queries/unit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'

import {
Unit, UnitConnection, UnitResponse,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'

export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/resolvers/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
ProposalConnection,
AgentRelationshipConnection,
AgentRelationshipRole
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { extractEdges, mapZomeFn } from '../connection.js'
import { DNAIdMappings, DEFAULT_VF_MODULES, VfModule, ByRevision, AddressableIdentifier } from '../types.js'
import { CommitmentSearchInput, EconomicEventSearchInput, EconomicResourceSearchInput, IntentSearchInput, PlanSearchInput, ProcessSearchInput, ProposalSearchInput } from './zomeSearchInputTypes.js'
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/resolvers/agreement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
CommitmentConnection,
EconomicEvent,
EconomicEventConnection,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'
import { CommitmentSearchInput, EconomicEventSearchInput } from './zomeSearchInputTypes.js'
import { AgentResponse } from '../mutations/agent'

Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/resolvers/commitment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
AccountingScope,
ProcessSpecification,
EconomicResource,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

import agentQueries from '../queries/agent.js'
import agreementQueries from '../queries/agreement.js'
Expand Down
2 changes: 1 addition & 1 deletion modules/vf-graphql-holochain/resolvers/economicEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {
ProcessConnection,
ResourceSpecificationResponse,
AccountingScope,
} from '@valueflows/vf-graphql'
} from '@leosprograms/vf-graphql'

import agentQueries from '../queries/agent.js'
import agreementQueries from '../queries/agreement.js'
Expand Down
Loading

0 comments on commit 862148c

Please sign in to comment.