Skip to content

Commit 216b3ac

Browse files
committed
run npm apidocs
1 parent 088d882 commit 216b3ac

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

etc/firebase-admin.data-connect.api.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ export class DataConnect {
3131
insert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
3232
insertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
3333
// Warning: (ae-forgotten-export) The symbol "MutationRef" needs to be exported by the entry point index.d.ts
34-
mutationRef<Data>(options: GraphqlOptions<undefined>): MutationRef<Data, undefined>;
35-
mutationRef<Data, Variables>(options: GraphqlOptions<Variables>): MutationRef<Data, Variables>;
34+
mutationRef<Data>(name: string, options?: RefOptions): MutationRef<Data, undefined>;
35+
mutationRef<Data, Variables>(name: string, variables: Variables, options?: RefOptions): MutationRef<Data, Variables>;
36+
// Warning: (ae-forgotten-export) The symbol "RefOptions" needs to be exported by the entry point index.d.ts
3637
// Warning: (ae-forgotten-export) The symbol "QueryRef" needs to be exported by the entry point index.d.ts
37-
queryRef<Data>(options: GraphqlOptions<undefined>): QueryRef<Data, undefined>;
38-
queryRef<Data, Variables>(options: GraphqlOptions<Variables>): QueryRef<Data, Variables>;
38+
queryRef<Data>(name: string, options?: RefOptions): QueryRef<Data, undefined>;
39+
queryRef<Data, Variables>(name: string, variables: Variables, options?: RefOptions): QueryRef<Data, Variables>;
3940
upsert<GraphQlResponse, Variables extends object>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
4041
upsertMany<GraphQlResponse, Variables extends Array<unknown>>(tableName: string, variables: Variables): Promise<ExecuteGraphqlResponse<GraphQlResponse>>;
4142
}

0 commit comments

Comments
 (0)