@ultipa-graph/ultipa-driver 6.0.17 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2 -0
- package/dist/client.js +28 -9
- package/dist/index.js +5 -3
- package/dist/response.d.ts +44 -2
- package/dist/response.js +115 -2
- package/dist/types/data_types.d.ts +57 -12
- package/dist/types/data_types.js +91 -3
- package/dist/types/typed_value.js +21 -23
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -333,6 +333,8 @@ export declare class GqldbClient {
|
|
|
333
333
|
* Returns true if any properties were created, false if all already existed.
|
|
334
334
|
*/
|
|
335
335
|
createPropertyIfNotExist(nodeOrEdge: DBType, labelName: string, props: ConvPropertyDef[], config?: QueryConfig): Promise<boolean>;
|
|
336
|
+
private static constraintName;
|
|
337
|
+
private static constraintTarget;
|
|
336
338
|
/** Create a NOT NULL constraint on a property */
|
|
337
339
|
createNotNullConstraint(nodeOrEdge: DBType, labelName: string, propName: string, config?: QueryConfig): Promise<Response>;
|
|
338
340
|
/** Create a UNIQUE constraint on one or more properties */
|