We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cadb7a9 commit 3253ae7Copy full SHA for 3253ae7
‎src/clients/abstractClient.ts
@@ -2,7 +2,7 @@ import { BaseEvent, GraphLike, GraphQuery, ObjProp, QueryProps } from '../types'
2
// Collection, Token
3
interface AbstractClient<C, T, E = BaseEvent> {
4
collectionById(id: string, fields?: ObjProp<C>): GraphQuery
5
- collectionByIdIn(id: string, fields?: ObjProp<C>): GraphQuery
+ collectionByIdIn(id: string | string[], fields?: ObjProp<C>): GraphQuery
6
// collectionListBy(id: string, field: KeyOf<C>, fields?: ObjProp<C>): GraphQuery
7
collectionCountByIssuer(issuer: string): GraphQuery
8
collectionCountByName(name: string): GraphQuery
0 commit comments