@memberjunction/server 0.9.244 → 0.9.245
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/build.log.json +3 -0
- package/dist/generated/generated.js +36 -36
- package/dist/generated/generated.js.map +1 -1
- package/package.json +9 -9
- package/src/generated/generated.ts +37 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/server",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.245",
|
|
4
4
|
"description": "MemberJunction: This project provides API access via GraphQL to the common data store.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
"@apollo/server": "^4.9.1",
|
|
23
23
|
"@graphql-tools/utils": "^10.0.1",
|
|
24
24
|
"@memberjunction/ai": "^0.9.163",
|
|
25
|
-
"@memberjunction/aiengine": "^0.9.
|
|
25
|
+
"@memberjunction/aiengine": "^0.9.66",
|
|
26
26
|
"@memberjunction/core": "^0.9.177",
|
|
27
|
-
"@memberjunction/core-entities": "^0.9.
|
|
28
|
-
"@memberjunction/data-context": "^0.9.
|
|
29
|
-
"@memberjunction/data-context-server": "^0.9.
|
|
27
|
+
"@memberjunction/core-entities": "^0.9.165",
|
|
28
|
+
"@memberjunction/data-context": "^0.9.52",
|
|
29
|
+
"@memberjunction/data-context-server": "^0.9.48",
|
|
30
30
|
"@memberjunction/global": "^0.9.156",
|
|
31
|
-
"@memberjunction/storage": "^0.9.
|
|
32
|
-
"@memberjunction/queue": "^0.9.
|
|
33
|
-
"@memberjunction/sqlserver-dataprovider": "^0.9.
|
|
34
|
-
"@memberjunction/skip-types": "^0.9.
|
|
31
|
+
"@memberjunction/storage": "^0.9.10",
|
|
32
|
+
"@memberjunction/queue": "^0.9.187",
|
|
33
|
+
"@memberjunction/sqlserver-dataprovider": "^0.9.202",
|
|
34
|
+
"@memberjunction/skip-types": "^0.9.77",
|
|
35
35
|
"@types/cors": "^2.8.13",
|
|
36
36
|
"@types/jsonwebtoken": "^8.5.9",
|
|
37
37
|
"@types/node": "^18.11.14",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* ALL ENTITIES - TypeGraphQL Type Class Definition - AUTO GENERATED FILE
|
|
3
3
|
* Generated Entities and Resolvers for Server
|
|
4
4
|
*
|
|
5
|
-
* GENERATED: 3/23/2024, 10:
|
|
5
|
+
* GENERATED: 3/23/2024, 10:41:24 AM
|
|
6
6
|
*
|
|
7
7
|
* >>> DO NOT MODIFY THIS FILE!!!!!!!!!!!!
|
|
8
8
|
* >>> YOUR CHANGES WILL BE OVERWRITTEN
|
|
@@ -26,7 +26,7 @@ import { CompanyEntity, EmployeeEntity, UserFavoriteEntity, EmployeeCompanyInteg
|
|
|
26
26
|
//****************************************************************************
|
|
27
27
|
// ENTITY CLASS for Companies
|
|
28
28
|
//****************************************************************************
|
|
29
|
-
@ObjectType()
|
|
29
|
+
@ObjectType({ description: 'A list of organizational units within your business. These can be subsidiaries or divisions or other units. Companies are used to organizae employee records and also for separating integrations if you have multiple integrations of the same type of system.' })
|
|
30
30
|
export class Company_ {
|
|
31
31
|
@Field(() => Int)
|
|
32
32
|
ID: number;
|
|
@@ -292,7 +292,7 @@ export class CompanyResolver extends ResolverBase {
|
|
|
292
292
|
//****************************************************************************
|
|
293
293
|
// ENTITY CLASS for Employees
|
|
294
294
|
//****************************************************************************
|
|
295
|
-
@ObjectType()
|
|
295
|
+
@ObjectType({ description: 'A list of employees across all units of your organization' })
|
|
296
296
|
export class Employee_ {
|
|
297
297
|
@Field(() => Int)
|
|
298
298
|
ID: number;
|
|
@@ -620,7 +620,7 @@ export class EmployeeResolver extends ResolverBase {
|
|
|
620
620
|
//****************************************************************************
|
|
621
621
|
// ENTITY CLASS for User Favorites
|
|
622
622
|
//****************************************************************************
|
|
623
|
-
@ObjectType()
|
|
623
|
+
@ObjectType({ description: 'Records that each user can mark as a favorite for easy access' })
|
|
624
624
|
export class UserFavorite_ {
|
|
625
625
|
@Field(() => Int)
|
|
626
626
|
ID: number;
|
|
@@ -1228,7 +1228,7 @@ export class EmployeeSkillResolver extends ResolverBase {
|
|
|
1228
1228
|
//****************************************************************************
|
|
1229
1229
|
// ENTITY CLASS for Roles
|
|
1230
1230
|
//****************************************************************************
|
|
1231
|
-
@ObjectType()
|
|
1231
|
+
@ObjectType({ description: 'Roles are used for security administration and can have zero to many Users as members' })
|
|
1232
1232
|
export class Role_ {
|
|
1233
1233
|
@Field(() => Int)
|
|
1234
1234
|
ID: number;
|
|
@@ -1430,7 +1430,7 @@ export class RoleResolver extends ResolverBase {
|
|
|
1430
1430
|
//****************************************************************************
|
|
1431
1431
|
// ENTITY CLASS for Skills
|
|
1432
1432
|
//****************************************************************************
|
|
1433
|
-
@ObjectType()
|
|
1433
|
+
@ObjectType({ description: 'A hierarchical list of possible skills that are linked to Employees and can also be linked to any other entity' })
|
|
1434
1434
|
export class Skill_ {
|
|
1435
1435
|
@Field(() => Int)
|
|
1436
1436
|
ID: number;
|
|
@@ -1542,7 +1542,7 @@ export class SkillResolver extends ResolverBase {
|
|
|
1542
1542
|
//****************************************************************************
|
|
1543
1543
|
// ENTITY CLASS for Integration URL Formats
|
|
1544
1544
|
//****************************************************************************
|
|
1545
|
-
@ObjectType()
|
|
1545
|
+
@ObjectType({ description: 'Used to generate web links for end users to easily access resources in a source system. URL Formats support templating to inject various field values at run-time to take a user directly to a resource in a source system.' })
|
|
1546
1546
|
export class IntegrationURLFormat_ {
|
|
1547
1547
|
@Field(() => Int)
|
|
1548
1548
|
ID: number;
|
|
@@ -1689,7 +1689,7 @@ export class IntegrationURLFormatResolver extends ResolverBase {
|
|
|
1689
1689
|
//****************************************************************************
|
|
1690
1690
|
// ENTITY CLASS for Integrations
|
|
1691
1691
|
//****************************************************************************
|
|
1692
|
-
@ObjectType()
|
|
1692
|
+
@ObjectType({ description: 'Catalog of all integrations that have been configured in the system.' })
|
|
1693
1693
|
export class Integration_ {
|
|
1694
1694
|
@Field(() => Int)
|
|
1695
1695
|
ID: number;
|
|
@@ -1878,7 +1878,7 @@ export class IntegrationResolver extends ResolverBase {
|
|
|
1878
1878
|
//****************************************************************************
|
|
1879
1879
|
// ENTITY CLASS for Company Integrations
|
|
1880
1880
|
//****************************************************************************
|
|
1881
|
-
@ObjectType()
|
|
1881
|
+
@ObjectType({ description: 'Links individual company records to specific integrations' })
|
|
1882
1882
|
export class CompanyIntegration_ {
|
|
1883
1883
|
@Field(() => Int)
|
|
1884
1884
|
ID: number;
|
|
@@ -2149,7 +2149,7 @@ export class CompanyIntegrationResolver extends ResolverBase {
|
|
|
2149
2149
|
//****************************************************************************
|
|
2150
2150
|
// ENTITY CLASS for Entity Fields
|
|
2151
2151
|
//****************************************************************************
|
|
2152
|
-
@ObjectType()
|
|
2152
|
+
@ObjectType({ description: 'List of all fields within each entity with metadata about each field' })
|
|
2153
2153
|
export class EntityField_ {
|
|
2154
2154
|
@Field(() => Int)
|
|
2155
2155
|
ID: number;
|
|
@@ -2642,7 +2642,7 @@ export class EntityFieldResolver extends ResolverBase {
|
|
|
2642
2642
|
//****************************************************************************
|
|
2643
2643
|
// ENTITY CLASS for Entities
|
|
2644
2644
|
//****************************************************************************
|
|
2645
|
-
@ObjectType()
|
|
2645
|
+
@ObjectType({ description: 'Catalog of all entities across all schemas' })
|
|
2646
2646
|
export class Entity_ {
|
|
2647
2647
|
@Field(() => Int)
|
|
2648
2648
|
ID: number;
|
|
@@ -3492,7 +3492,7 @@ export class EntityResolverBase extends ResolverBase {
|
|
|
3492
3492
|
//****************************************************************************
|
|
3493
3493
|
// ENTITY CLASS for Users
|
|
3494
3494
|
//****************************************************************************
|
|
3495
|
-
@ObjectType()
|
|
3495
|
+
@ObjectType({ description: 'A list of all users who have or had access to the system' })
|
|
3496
3496
|
export class User_ {
|
|
3497
3497
|
@Field(() => Int)
|
|
3498
3498
|
ID: number;
|
|
@@ -4003,7 +4003,7 @@ export class UserResolverBase extends ResolverBase {
|
|
|
4003
4003
|
//****************************************************************************
|
|
4004
4004
|
// ENTITY CLASS for Entity Relationships
|
|
4005
4005
|
//****************************************************************************
|
|
4006
|
-
@ObjectType()
|
|
4006
|
+
@ObjectType({ description: 'Metadata about relationships between entities including display preferences for the UI' })
|
|
4007
4007
|
export class EntityRelationship_ {
|
|
4008
4008
|
@Field(() => Int)
|
|
4009
4009
|
ID: number;
|
|
@@ -4524,7 +4524,7 @@ export class UserRecordLogResolver extends ResolverBase {
|
|
|
4524
4524
|
//****************************************************************************
|
|
4525
4525
|
// ENTITY CLASS for User Views
|
|
4526
4526
|
//****************************************************************************
|
|
4527
|
-
@ObjectType()
|
|
4527
|
+
@ObjectType({ description: 'Views are sets of records within a given entity defined by filtering rules. Views can be used programatically to retrieve dynamic sets of data and in user interfaces like MJ Explorer for end-user consumption.' })
|
|
4528
4528
|
export class UserView_ {
|
|
4529
4529
|
@Field(() => Int)
|
|
4530
4530
|
ID: number;
|
|
@@ -5427,7 +5427,7 @@ export class ErrorLogResolver extends ResolverBase {
|
|
|
5427
5427
|
//****************************************************************************
|
|
5428
5428
|
// ENTITY CLASS for Applications
|
|
5429
5429
|
//****************************************************************************
|
|
5430
|
-
@ObjectType()
|
|
5430
|
+
@ObjectType({ description: 'Applications are used to group entities in the user interface for ease of user access' })
|
|
5431
5431
|
export class Application_ {
|
|
5432
5432
|
@Field(() => Int)
|
|
5433
5433
|
ID: number;
|
|
@@ -5583,7 +5583,7 @@ export class ApplicationResolver extends ResolverBase {
|
|
|
5583
5583
|
//****************************************************************************
|
|
5584
5584
|
// ENTITY CLASS for Application Entities
|
|
5585
5585
|
//****************************************************************************
|
|
5586
|
-
@ObjectType()
|
|
5586
|
+
@ObjectType({ description: 'List of entities within each application. An application can have any number of entities and an entity can be part of any number of applications.' })
|
|
5587
5587
|
export class ApplicationEntity_ {
|
|
5588
5588
|
@Field(() => Int)
|
|
5589
5589
|
ID: number;
|
|
@@ -5819,7 +5819,7 @@ export class ApplicationEntityResolver extends ResolverBase {
|
|
|
5819
5819
|
//****************************************************************************
|
|
5820
5820
|
// ENTITY CLASS for Entity Permissions
|
|
5821
5821
|
//****************************************************************************
|
|
5822
|
-
@ObjectType()
|
|
5822
|
+
@ObjectType({ description: 'Security settings for each entity' })
|
|
5823
5823
|
export class EntityPermission_ {
|
|
5824
5824
|
@Field(() => Int)
|
|
5825
5825
|
ID: number;
|
|
@@ -6638,7 +6638,7 @@ export class CompanyIntegrationRunAPILogResolver extends ResolverBase {
|
|
|
6638
6638
|
//****************************************************************************
|
|
6639
6639
|
// ENTITY CLASS for Lists
|
|
6640
6640
|
//****************************************************************************
|
|
6641
|
-
@ObjectType()
|
|
6641
|
+
@ObjectType({ description: 'Static lists are useful for controlling a set of data for a given entity. These can be used programatically for applications like logging and tracking long-running tasks and also by end users for tracking any particular list of records they want to directly control the set.' })
|
|
6642
6642
|
export class List_ {
|
|
6643
6643
|
@Field(() => Int)
|
|
6644
6644
|
ID: number;
|
|
@@ -6888,7 +6888,7 @@ export class ListResolver extends ResolverBase {
|
|
|
6888
6888
|
//****************************************************************************
|
|
6889
6889
|
// ENTITY CLASS for List Details
|
|
6890
6890
|
//****************************************************************************
|
|
6891
|
-
@ObjectType()
|
|
6891
|
+
@ObjectType({ description: 'Tracks the records within each list.' })
|
|
6892
6892
|
export class ListDetail_ {
|
|
6893
6893
|
@Field(() => Int)
|
|
6894
6894
|
ID: number;
|
|
@@ -7083,7 +7083,7 @@ export class ListDetailResolver extends ResolverBase {
|
|
|
7083
7083
|
//****************************************************************************
|
|
7084
7084
|
// ENTITY CLASS for User View Runs
|
|
7085
7085
|
//****************************************************************************
|
|
7086
|
-
@ObjectType()
|
|
7086
|
+
@ObjectType({ description: 'User Views can be logged when run to capture the date and user that ran the view as well as the output results.' })
|
|
7087
7087
|
export class UserViewRun_ {
|
|
7088
7088
|
@Field(() => Int)
|
|
7089
7089
|
ID: number;
|
|
@@ -7271,7 +7271,7 @@ export class UserViewRunResolver extends ResolverBase {
|
|
|
7271
7271
|
//****************************************************************************
|
|
7272
7272
|
// ENTITY CLASS for User View Run Details
|
|
7273
7273
|
//****************************************************************************
|
|
7274
|
-
@ObjectType()
|
|
7274
|
+
@ObjectType({ description: 'Tracks the set of records that were included in each run of a given user view.' })
|
|
7275
7275
|
export class UserViewRunDetail_ {
|
|
7276
7276
|
@Field(() => Int)
|
|
7277
7277
|
ID: number;
|
|
@@ -7908,7 +7908,7 @@ export class WorkflowEngineResolver extends ResolverBase {
|
|
|
7908
7908
|
//****************************************************************************
|
|
7909
7909
|
// ENTITY CLASS for Record Changes
|
|
7910
7910
|
//****************************************************************************
|
|
7911
|
-
@ObjectType()
|
|
7911
|
+
@ObjectType({ description: 'For entities that have TrackRecordChanges=1, Record Changes will store the history of all changes made within the system. For integrations you can directly add values here if you have inbound signals indicating records were changed in a source system. This entity only automatically captures Record Changes if they were made within the system.' })
|
|
7912
7912
|
export class RecordChange_ {
|
|
7913
7913
|
@Field(() => Int)
|
|
7914
7914
|
ID: number;
|
|
@@ -9018,7 +9018,7 @@ export class EntityFieldValueResolver extends ResolverBase {
|
|
|
9018
9018
|
//****************************************************************************
|
|
9019
9019
|
// ENTITY CLASS for AI Models
|
|
9020
9020
|
//****************************************************************************
|
|
9021
|
-
@ObjectType()
|
|
9021
|
+
@ObjectType({ description: 'Catalog of all AI Models configured in the system.' })
|
|
9022
9022
|
export class AIModel_ {
|
|
9023
9023
|
@Field(() => Int)
|
|
9024
9024
|
ID: number;
|
|
@@ -9228,7 +9228,7 @@ export class AIModelResolver extends ResolverBase {
|
|
|
9228
9228
|
//****************************************************************************
|
|
9229
9229
|
// ENTITY CLASS for AI Actions
|
|
9230
9230
|
//****************************************************************************
|
|
9231
|
-
@ObjectType()
|
|
9231
|
+
@ObjectType({ description: 'List of all actions that are possible across all AI Models' })
|
|
9232
9232
|
export class AIAction_ {
|
|
9233
9233
|
@Field(() => Int)
|
|
9234
9234
|
ID: number;
|
|
@@ -9405,7 +9405,7 @@ export class AIActionResolver extends ResolverBase {
|
|
|
9405
9405
|
//****************************************************************************
|
|
9406
9406
|
// ENTITY CLASS for AI Model Actions
|
|
9407
9407
|
//****************************************************************************
|
|
9408
|
-
@ObjectType()
|
|
9408
|
+
@ObjectType({ description: 'Tracks the actions supported by each AI Model' })
|
|
9409
9409
|
export class AIModelAction_ {
|
|
9410
9410
|
@Field(() => Int)
|
|
9411
9411
|
ID: number;
|
|
@@ -9551,7 +9551,7 @@ export class AIModelActionResolver extends ResolverBase {
|
|
|
9551
9551
|
//****************************************************************************
|
|
9552
9552
|
// ENTITY CLASS for Entity AI Actions
|
|
9553
9553
|
//****************************************************************************
|
|
9554
|
-
@ObjectType()
|
|
9554
|
+
@ObjectType({ description: 'Tracks the AI actions that should be invoked based on changes to records within a given entity.' })
|
|
9555
9555
|
export class EntityAIAction_ {
|
|
9556
9556
|
@Field(() => Int)
|
|
9557
9557
|
ID: number;
|
|
@@ -9755,7 +9755,7 @@ export class EntityAIActionResolver extends ResolverBase {
|
|
|
9755
9755
|
//****************************************************************************
|
|
9756
9756
|
// ENTITY CLASS for AI Model Types
|
|
9757
9757
|
//****************************************************************************
|
|
9758
|
-
@ObjectType()
|
|
9758
|
+
@ObjectType({ description: 'Types of AI Models' })
|
|
9759
9759
|
export class AIModelType_ {
|
|
9760
9760
|
@Field(() => Int)
|
|
9761
9761
|
ID: number;
|
|
@@ -9983,7 +9983,7 @@ export class QueueTypeResolver extends ResolverBase {
|
|
|
9983
9983
|
//****************************************************************************
|
|
9984
9984
|
// ENTITY CLASS for Queues
|
|
9985
9985
|
//****************************************************************************
|
|
9986
|
-
@ObjectType()
|
|
9986
|
+
@ObjectType({ description: 'Queues can be used to async execute long running tasks' })
|
|
9987
9987
|
export class Queue_ {
|
|
9988
9988
|
@Field(() => Int)
|
|
9989
9989
|
ID: number;
|
|
@@ -10528,7 +10528,7 @@ export class QueueTaskResolver extends ResolverBase {
|
|
|
10528
10528
|
//****************************************************************************
|
|
10529
10529
|
// ENTITY CLASS for Dashboards
|
|
10530
10530
|
//****************************************************************************
|
|
10531
|
-
@ObjectType()
|
|
10531
|
+
@ObjectType({ description: 'Dashboards are used to group resources into a single display pane for an end-user' })
|
|
10532
10532
|
export class Dashboard_ {
|
|
10533
10533
|
@Field(() => Int)
|
|
10534
10534
|
ID: number;
|
|
@@ -11676,7 +11676,7 @@ export class ResourceTypeResolver extends ResolverBase {
|
|
|
11676
11676
|
//****************************************************************************
|
|
11677
11677
|
// ENTITY CLASS for Tags
|
|
11678
11678
|
//****************************************************************************
|
|
11679
|
-
@ObjectType()
|
|
11679
|
+
@ObjectType({ description: 'Tags are used to arbitrarily associate any record in any entity with addtional information.' })
|
|
11680
11680
|
export class Tag_ {
|
|
11681
11681
|
@Field(() => Int)
|
|
11682
11682
|
ID: number;
|
|
@@ -11780,7 +11780,7 @@ export class TagResolver extends ResolverBase {
|
|
|
11780
11780
|
//****************************************************************************
|
|
11781
11781
|
// ENTITY CLASS for Tagged Items
|
|
11782
11782
|
//****************************************************************************
|
|
11783
|
-
@ObjectType()
|
|
11783
|
+
@ObjectType({ description: 'Tracks the links between any record in any entity with Tags' })
|
|
11784
11784
|
export class TaggedItem_ {
|
|
11785
11785
|
@Field(() => Int)
|
|
11786
11786
|
ID: number;
|
|
@@ -11862,7 +11862,7 @@ export class TaggedItemResolver extends ResolverBase {
|
|
|
11862
11862
|
//****************************************************************************
|
|
11863
11863
|
// ENTITY CLASS for Workspaces
|
|
11864
11864
|
//****************************************************************************
|
|
11865
|
-
@ObjectType()
|
|
11865
|
+
@ObjectType({ description: 'A user can have one or more workspaces' })
|
|
11866
11866
|
export class Workspace_ {
|
|
11867
11867
|
@Field(() => Int)
|
|
11868
11868
|
ID: number;
|
|
@@ -12073,7 +12073,7 @@ export class WorkspaceResolver extends ResolverBase {
|
|
|
12073
12073
|
//****************************************************************************
|
|
12074
12074
|
// ENTITY CLASS for Workspace Items
|
|
12075
12075
|
//****************************************************************************
|
|
12076
|
-
@ObjectType()
|
|
12076
|
+
@ObjectType({ description: 'Tracks the resources that are active within a given worksapce' })
|
|
12077
12077
|
export class WorkspaceItem_ {
|
|
12078
12078
|
@Field(() => Int)
|
|
12079
12079
|
ID: number;
|
|
@@ -12314,7 +12314,7 @@ export class WorkspaceItemResolver extends ResolverBase {
|
|
|
12314
12314
|
//****************************************************************************
|
|
12315
12315
|
// ENTITY CLASS for Datasets
|
|
12316
12316
|
//****************************************************************************
|
|
12317
|
-
@ObjectType()
|
|
12317
|
+
@ObjectType({ description: 'Cacheable sets of data that can span one or more items' })
|
|
12318
12318
|
export class Dataset_ {
|
|
12319
12319
|
@Field(() => Int)
|
|
12320
12320
|
ID: number;
|
|
@@ -12403,7 +12403,7 @@ export class DatasetResolver extends ResolverBase {
|
|
|
12403
12403
|
//****************************************************************************
|
|
12404
12404
|
// ENTITY CLASS for Dataset Items
|
|
12405
12405
|
//****************************************************************************
|
|
12406
|
-
@ObjectType()
|
|
12406
|
+
@ObjectType({ description: 'A single item in a Dataset and can be sourced from multiple methods.' })
|
|
12407
12407
|
export class DatasetItem_ {
|
|
12408
12408
|
@Field(() => Int)
|
|
12409
12409
|
ID: number;
|
|
@@ -13290,7 +13290,7 @@ export class UserNotificationResolver extends ResolverBase {
|
|
|
13290
13290
|
//****************************************************************************
|
|
13291
13291
|
// ENTITY CLASS for Schema Info
|
|
13292
13292
|
//****************************************************************************
|
|
13293
|
-
@ObjectType()
|
|
13293
|
+
@ObjectType({ description: 'Tracks the schemas in the system and the ID ranges that are valid for entities within each schema.' })
|
|
13294
13294
|
export class SchemaInfo_ {
|
|
13295
13295
|
@Field(() => Int)
|
|
13296
13296
|
ID: number;
|
|
@@ -14615,7 +14615,7 @@ export class QueryCategoryResolver extends ResolverBase {
|
|
|
14615
14615
|
//****************************************************************************
|
|
14616
14616
|
// ENTITY CLASS for Queries
|
|
14617
14617
|
//****************************************************************************
|
|
14618
|
-
@ObjectType()
|
|
14618
|
+
@ObjectType({ description: 'Catalog of stored queries. This is useful for any arbitrary query that is known to be performant and correct and can be reused. Queries can be viewed/run by a user, used programatically via RunQuery, and also used by AI systems for improved reliability instead of dynamically generated SQL. Queries can also improve security since they store the SQL instead of using dynamic SQL.' })
|
|
14619
14619
|
export class Query_ {
|
|
14620
14620
|
@Field(() => Int)
|
|
14621
14621
|
ID: number;
|