Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
aexol committed Apr 15, 2024
1 parent d85c574 commit 1d161f1
Show file tree
Hide file tree
Showing 9 changed files with 8,064 additions and 157 deletions.
25 changes: 25 additions & 0 deletions examples/typescript-node/src/mmm/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { Gql, _SubgraphErrorPolicy_ } from './zeus';

Gql('query')({
invoices: [
{
subgraphError: _SubgraphErrorPolicy_.allow,
},
{
client: true,
createdAt: true,
disputeId: true,
id: true,
address: true,
network: true,
projectName: true,
released: true,
token: true,
tokenMetadata: {
id: true,
},
},
],
}).then((r) => {
// correct type
});
Loading

0 comments on commit 1d161f1

Please sign in to comment.