@@ -79,7 +79,6 @@ export class DataConnect {
7979 * @param options - Optional {@link GraphqlOptions} when executing a GraphQL query or mutation.
8080 *
8181 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
82- * @beta
8382 */
8483 public executeGraphql < GraphqlResponse , Variables > (
8584 query : string ,
@@ -95,7 +94,6 @@ export class DataConnect {
9594 * @param options - Optional {@link GraphqlOptions} when executing a read-only GraphQL query.
9695 *
9796 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
98- * @beta
9997 */
10098 public executeGraphqlRead < GraphqlResponse , Variables > (
10199 query : string ,
@@ -110,7 +108,6 @@ export class DataConnect {
110108 * @param tableName - The name of the table to insert data into.
111109 * @param variables - The data object to insert. The keys should correspond to the column names.
112110 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
113- * @beta
114111 */
115112 public insert < GraphQlResponse , Variables extends object > (
116113 tableName : string ,
@@ -125,7 +122,6 @@ export class DataConnect {
125122 * @param tableName - The name of the table to insert data into.
126123 * @param variables - An array of data objects to insert. Each object's keys should correspond to the column names.
127124 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
128- * @beta
129125 */
130126 public insertMany < GraphQlResponse , Variables extends Array < unknown > > (
131127 tableName : string ,
@@ -140,7 +136,6 @@ export class DataConnect {
140136 * @param tableName - The name of the table to upsert data into.
141137 * @param variables - The data object to upsert. The keys should correspond to the column names.
142138 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
143- * @beta
144139 */
145140 public upsert < GraphQlResponse , Variables extends object > (
146141 tableName : string ,
@@ -155,7 +150,6 @@ export class DataConnect {
155150 * @param tableName - The name of the table to upsert data into.
156151 * @param variables - An array of data objects to upsert. Each object's keys should correspond to the column names.
157152 * @returns A promise that fulfills with a `ExecuteGraphqlResponse`.
158- * @beta
159153 */
160154 public upsertMany < GraphQlResponse , Variables extends Array < unknown > > (
161155 tableName : string ,
0 commit comments