Skip to content

Commit

Permalink
create basic elements for Miroir Action Script (MAS), migrate Tools.s…
Browse files Browse the repository at this point in the history
…ubmit to MAS #28. Implemented most simple regexp match filter for extractObjectListByEntity queries in QuerySelector
  • Loading branch information
miroir-framework committed Aug 6, 2024
1 parent 424a5f7 commit 28cbf9f
Show file tree
Hide file tree
Showing 38 changed files with 423 additions and 242 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2230,14 +2230,14 @@ export function getMiroirFundamentalJzodSchema(
queryFailed: (miroirFundamentalJzodSchema as any).definition.context.queryFailed,
querySelectObjectListByManyToManyRelation: (miroirFundamentalJzodSchema as any).definition.context
.querySelectObjectListByManyToManyRelation,
querySelectObjectListByEntity: (miroirFundamentalJzodSchema as any).definition.context
.querySelectObjectListByEntity,
extractObjectListByEntity: (miroirFundamentalJzodSchema as any).definition.context
.extractObjectListByEntity,
querySelectObjectListByRelation: (miroirFundamentalJzodSchema as any).definition.context
.querySelectObjectListByRelation,
querySelectObjectByRelation: (miroirFundamentalJzodSchema as any).definition.context
.querySelectObjectByRelation,
querySelectObjectByDirectReference: (miroirFundamentalJzodSchema as any).definition.context
.querySelectObjectByDirectReference,
extractObjectByDirectReference: (miroirFundamentalJzodSchema as any).definition.context
.extractObjectByDirectReference,
querySelectExtractorObject: (miroirFundamentalJzodSchema as any).definition.context.querySelectExtractorObject,
querySelectExtractorList: (miroirFundamentalJzodSchema as any).definition.context.querySelectExtractorList,
querySelectExtractor: (miroirFundamentalJzodSchema as any).definition.context.querySelectExtractor,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4226,7 +4226,7 @@ export const miroirFundamentalJzodSchema = {
}
}
},
"querySelectObjectByDirectReference": {
"extractObjectByDirectReference": {
"type": "object",
"extend": {
"type": "schemaReference",
Expand Down Expand Up @@ -4267,14 +4267,14 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "querySelectObjectByDirectReference",
"relativePath": "extractObjectByDirectReference",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
}
]
},
"querySelectObjectListByEntity": {
"extractObjectListByEntity": {
"type": "object",
"extend": {
"type": "schemaReference",
Expand All @@ -4288,7 +4288,24 @@ export const miroirFundamentalJzodSchema = {
"definition": {
"queryType": {
"type": "literal",
"definition": "selectObjectListByEntity"
"definition": "extractObjectListByEntity"
},
"filter": {
"type": "object",
"optional": true,
"definition": {
"attributeName": {
"type": "string"
},
"value": {
"type": "schemaReference",
"definition": {
"relativePath": "queryTemplateConstantOrParameterReference",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
}
}
}
}
},
Expand Down Expand Up @@ -4366,7 +4383,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "querySelectObjectListByEntity",
"relativePath": "extractObjectListByEntity",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
Expand Down Expand Up @@ -4434,7 +4451,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "querySelectObjectByDirectReference",
"relativePath": "extractObjectByDirectReference",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
Expand Down Expand Up @@ -4468,7 +4485,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "querySelectObjectListByEntity",
"relativePath": "extractObjectListByEntity",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
Expand Down Expand Up @@ -4580,7 +4597,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "querySelectObjectListByEntity",
"relativePath": "extractObjectListByEntity",
"absolutePath": "fe9b7d99-f216-44de-bb6e-60e1a1ebb739"
},
"context": {}
Expand Down Expand Up @@ -23966,7 +23983,7 @@ export const miroirFundamentalJzodSchema = {
}
]
},
"carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectListByEntity": {
"carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectListByEntity": {
"type": "union",
"definition": [
{
Expand All @@ -23991,7 +24008,7 @@ export const miroirFundamentalJzodSchema = {
"definition": [
{
"type": "literal",
"definition": "selectObjectListByEntity"
"definition": "extractObjectListByEntity"
},
{
"type": "schemaReference",
Expand All @@ -24000,6 +24017,55 @@ export const miroirFundamentalJzodSchema = {
}
}
]
},
"filter": {
"optional": true,
"type": "union",
"definition": [
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOnObject"
}
},
{
"type": "object",
"definition": {
"attributeName": {
"type": "union",
"definition": [
{
"type": "string"
},
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOnObject"
}
}
]
},
"value": {
"type": "union",
"definition": [
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_queryTemplateConstantOrParameterReference"
},
"context": {}
},
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOnObject"
}
}
]
}
}
}
]
}
}
}
Expand Down Expand Up @@ -24163,7 +24229,7 @@ export const miroirFundamentalJzodSchema = {
}
]
},
"carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectByDirectReference": {
"carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectByDirectReference": {
"type": "union",
"definition": [
{
Expand Down Expand Up @@ -24230,7 +24296,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectByDirectReference"
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectByDirectReference"
},
"context": {}
},
Expand Down Expand Up @@ -24312,7 +24378,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectListByEntity"
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectListByEntity"
},
"context": {}
},
Expand Down Expand Up @@ -24460,7 +24526,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectByDirectReference"
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectByDirectReference"
},
"context": {}
},
Expand Down Expand Up @@ -24732,7 +24798,7 @@ export const miroirFundamentalJzodSchema = {
{
"type": "schemaReference",
"definition": {
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_querySelectObjectListByEntity"
"relativePath": "carryOn_fe9b7d99$f216$44de$bb6e$60e1a1ebb739_extractObjectListByEntity"
},
"context": {}
},
Expand Down
Loading

0 comments on commit 28cbf9f

Please sign in to comment.