Client implementation in javascript for the CRUD service.
npm i @fraym/crud
You can access the graphQL api at http://crud:3000/delivery/graphql
.
There is a sandbox available at http://crud:3000/delivery/graphql/sandbox
.
You need to add the Tenant-Id
header in order to use the graphQL Endpoint and the sandbox.
Use a .env
file or env variables to configure cte clients and the command:
CRUD_SERVER_ADDRESS=127.0.0.1:9000
const deliveryClient = await newDeliveryClient();
All delivery client functions make use of the AuthData
object.
This data is used to check access for the desired action.
You can add the FRAYM_AUTH_OWNER
scope in case you are performing an action that is no subject to restrictions.
Fields:
tenantId
: Id of the tenant to usescopes
: Slice of scopes to use for the actiondata
: Data that is used in directives like@filterFromJwtData
You can specify the correlation and causation IDs for the upsert and delete functions. The eventMetadata
parameter is optional for all these functions and has the following structure:
const eventMetadata = {
correlationId: "some-correlation-id",
causationId: "some-causation-id",
};
The name of YourCrudType
has to equal your type name in your schema (also in casing).
const response = await client.create<any>("YourCrudType", authData, {
// values here
});
The response contains the following fields:
In case of no validation errors:
data
: The new data after your create action
In case of validation errors:
validationErrors
: List of global validation errors that are not related to a single fieldfieldValidationErrors
: Validation errors mapped by the name of the field that they relate to
The name of YourCrudType
has to equal your type name in your schema (also in casing).
const response = await client.update<any>("YourCrudType", authData, {
// values here
});
The response contains the following fields:
In case of no validation errors:
data
: The new data after your create action
In case of validation errors:
validationErrors
: List of global validation errors that are not related to a single fieldfieldValidationErrors
: Validation errors mapped by the name of the field that they relate to
The name of YourCrudType
has to equal your type name in your schema (also in casing).
Delete data matching a specific ID:
const numberOfDeletedEntries = await client.deleteDataById("YourCrudType", authData, "id");
Delete data matching a filter (see filter parameter for getDataList
for details):
const numberOfDeletedEntries = await client.deleteDataByFilter("YourCrudType", authData, {
fields: {
fieldName: {
operation: "equals",
type: "Int",
value: 123,
},
},
});
A filter could look like this:
const filter := {
fields: {
fieldName: {
operation: "equals",
type: "Int",
value: 123,
},
},
}
The name of YourCrudType
has to equal your type name in your schema (also in casing).
The id
has to match the id of the data that you want to get.
const data = await client.getData(
"YourCrudType",
authData,
"id",
filter,
returnEmptyDataIfNotFound
);
The name of YourCrudType
has to equal your type name in your schema (also in casing).
No pagination:
const dataList = await client.getDataList("YourCrudType", authData);
The dataList response contains the following fields:
limit
: The pagination limitpage
: The pagination pagetotal
: The total amount of elements matching the given filterdata
: The selected data
With pagination:
const limit = 50; // elements to query per page
const page = 1; // number of the page you want to select, first page starts at: 1
const dataList = await client.getDataList("YourCrudType", authData, limit, page);
With filter:
const dataList = await client.getDataList("YourCrudType", authData, undefined, undefined, {
fields: {
fieldName: {
operation: "equals",
type: "Int",
value: 123,
},
},
});
All Filter
s are evaluated by:
- checking that all field filters match
- checking that all
and
filters match - checking that one of the
or
filters match
Avaliable types:
String
ID
DateTime
Int
Float
Boolean
Avaliable operators for all types:
equals
notEquals
Avaliable options for the filter type DateTime
:
inArray
notInArray
after
before
Avaliable options for the filter type String
and ID
:
inArray
notInArray
Avaliable options for the filter type Int
and Float
:
lessThan
greaterThan
lessThanOrEqual
greaterThanOrEqual
With order:
All order definitions are prioritized in the order that they are defined (the first definition is prioritized over the second).
const dataList = await client.getDataList(
"YourCrudType",
authData,
undefined,
undefined,
undefined,
[
{
field: "fieldName",
descending: true, // omit this value for asc order
},
]
);
You won't lose any data if you don't. Use it for your peace of mind.
client.close();