Questions tagged [gentics-mesh]
33 questions
0
votes
1 answer
Gentics Mesh - Multilanguage support - Cross language in a list of node - GraphQL query
Gentics Mesh Version : v1.5.1
Intro:
Let suppose we have schema A with a field of type: list and list type: node and allowed schemas: B. (see (1)).
An instance of B node has been created (b1-EN) in language en and (b1-DE) in de.
An instance of B…

Martin Bogaert
- 15
- 3
0
votes
1 answer
How to retrieve full node in a schema property: node
This is a slice of the schema I'm creating, lets say Schema A.
...
{
"name":"topicList",
"type":"list",
"label":"topicList",
"required":false,
"listType":"node",
"allow":[
"topic"
…

Javier Velando
- 3
- 2
0
votes
1 answer
How can I specify what schemas ( or indices ) I want to query from Gentics Mesh (no graphQL API)
So I'm using Gentics Mesh and a "middleware". From this middleware, I'm making a request to the mesh API that forwards requests to elasticSearch. At moment I don't want to use GraphQL API so that's why I'm using /rawSearch.
The problem becomes that…

Javier Velando
- 3
- 2
0
votes
1 answer
How can I set default permissions on new nodes in Gentics Mesh?
I'd like anonymous users to have 'read published' permission to all newly created nodes under a specific node.
I can grant permission to a node after it's created, but is there a way to specify the permission when creating? Or is there a way to…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
Gentics Mesh Schema can't be found after just creating it
I'm able to create a new schema using the MeshRestClient, and get a successful response back.
Although, just after that, I try to create a node using the schema and I get an exception about missing the referenced schema.
Log output from creating a…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
2 answers
How can I send a JsonObject request, and recieve a NodeResponse in the MeshRestClient?
In my Gentics Mesh plugin, I'm creating Nodes from json files.
I've created a scripting process that replaces variable placeholders in a json file, with actual values [for example, from a previous node creation event].
This works great if I have a…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
How do I query nodes that are missing a child of a specific type?
I'm new to graphql, and trying to understand how I might fill this use case.
I have thousands of nodes of a specific type/schema.
Some of these nodes have children, some of them don't.
I'd like to query all the nodes, and return only the ones that…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
How do I manage state of a node in Gentics Mesh?
I'm using an external BPM for content approval in Gentics Mesh and a content node may be in one of several states.
A requirement is to query all content nodes that have no state, or have a specific state.
Since we don't have field level permission…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
New field types in Gentics Mesh schema
I'd like to add custom field types like 'email' or other strings that could use regex validation.
Also, numeric fields with validation like < or > or formatting like money.
I was thinking about storing a mapping of schema uuid + field name +…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
How should I implement a Calendar with reccuring events in Gentics Mesh?
I have a requirement to create shared calendars in a Gentics Mesh application.
This is the approach I've been working out -
Create a container node called 'events'. This would represent the 'Calendar'.
Create a schema for 'event', and add…

Jeremy
- 2,970
- 1
- 26
- 50
0
votes
1 answer
Call external REST API to fetch data for list
Do we have a provision to use the external REST API to get data and put into allowed values for a list?

Sandeep
- 1
0
votes
1 answer
How to configure gentics mesh instance with AWS storage?
Right now I am trying to setup Gentics Mesh in AWS Cloud. While exploring the software I came across a feature of Gentics Mesh to use AWS S3 as storage. It would be helpful if anyone can point me to a documentation or any other info which helps me…

Senthil
- 11
- 1
0
votes
2 answers
How can I restore the database when mesh is not starting up any more?
Due to low memory our mesh instance crashed and left the database in an inconsistent state. Mesh is not starting up anymore and I have no chance to use the restore end points. Is there an alternative way to restore the database?
Here is the error…

Le Beef
- 21
- 5
0
votes
1 answer
How can I set permissions for editing my own user data but not the others' data?
In my project I have two roles/groups: admin and user. Admins can add and edit users, users can only read the data.
How can I achieve that a user can edit its own data (like password, name, ...) but not the others? Since I can only add permissions…

Le Beef
- 21
- 5
0
votes
1 answer
How to filter on a array with graphql in Generic Mesh CMS?
Im trying to get just entrys which have in a specific value in a array (myArray: [String]).
Displaying of this Array is not Problem:
query ($lang: [String!], $filter: String!) {
nodes(lang: $lang, filter: {schema: {is: myObj}, fields: {myObj:…

patrick
- 826
- 1
- 9
- 28