391 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
124
views
Next.js <Image> fails with Directus: "url" parameter is not allowed"
I’m using Next.js 16.0.1 and loading images from a Directus /assets/<id> endpoint.
The Directus asset URL works fine in the browser: https://<directus-domain>/assets/<id>
But when ...
0
votes
0
answers
108
views
Directus custom layout extension
I'm using Directus 11.7.2
and trying to run the simple layout extension from the documentation
https://docs.directus.io/guides/extensions/layouts-getting-started.html
index.js:
import { toRefs } from '...
0
votes
0
answers
153
views
Directus custom button on the collection page extension
I'm trying to create a simple extension for Directus which adds a button at the header on collection list page (a button nearby "+" button)
When a user selects some of collection items, then ...
1
vote
0
answers
109
views
Directus Flow: modifiedPayload is accessible in Run Script but undefined in subsequent operations
I’m working on a Directus flow where I’m using a Run Script operation to add a modifiedPayload object to the data object. The modifiedPayload is successfully created and logged in the Run Script, but ...
0
votes
0
answers
45
views
Is it possible to access the idp token in directus flows?
I'm new to directus and stumbled upon a problem. I configured a private IdP with directus and oidc. This works fine. Now I wanna create a flow which loads data from an api using the bearer token ...
1
vote
1
answer
199
views
Nuxt3 data fetching from Directus
Nuxt Noob here. I want to create a Site that uses Directus as backend.
I followed tutorials about fetching data in Nuxt and using the Directus SDK.
On initial page load, everything seems fine and data ...
1
vote
1
answer
108
views
directus M2a field not showing existing items
System:
directus 11.4.0
docker compose
ubuntu
Problem:
When using the "add existing" option for m2a fields there are no existing items showing (not only for one of the m2a fields, it ́s for ...
1
vote
0
answers
65
views
linkedin Oauth2 not working with directus
I'm trying to integrate LinkedIn OAuth with Directus, but I keep running into an issue when the authentication callback happens.
Does Directus Support LinkedIn OAuth?
From what I've found, Directus ...
0
votes
1
answer
40
views
Trigger to mark latest training record as valid without recursive execution
Description
I have a training table in PostgreSQL:
CREATE TABLE training
(
id SERIAL PRIMARY KEY,
person_id INT NOT NULL,
training_type_id INT NOT NULL,
date_expires DATE NOT NULL,
...
1
vote
0
answers
63
views
How to match / show translation strings values for custom interface translation placeholders
Some existing extensions use the $t:-placeholders for field properties like name, description, text (see defineInterface → options).
When I import / activate my extension in the data studio, with the ...
1
vote
1
answer
867
views
How can I use the slugs in directus?
Creating articles on cms directus (version 11.3.5) that I want to use for a blog.
I've found the documentation about creating slugs automatically and the discussions on github
I've used it on the ...
1
vote
1
answer
861
views
Deep filtering nested relations Directus
How do I use deep in nested relations?
deep: {
translations: { _filter: { languages_code: 'nl-NL' } },
variants: { _filter: { translations: { languages_code: 'nl-NL' } } }, // This does not ...
Red's user avatar
- 7,473
-2
votes
1
answer
503
views
How to query fields in Directus Flows Read Data?
I have this "Read Data" in Directus Flows. I want to get result from this field: product_carts.products_cart_id. I know how to execute it from postman with /product_carts.products_cart_id. ...
1
vote
0
answers
47
views
AWS Elastic Beanstalk application load balancer 504 gateway time-out
I have created a elastic beanstalk docker environment. The sample application runs totally fine, I was able to access the application with the domain http://xxxxxxxxx.eu-central-1.elasticbeanstalk.com/...
1
vote
1
answer
639
views
How to determine variables in Directus Flows
I'm stuck at determine variables on directus flows.
I know there is {{$trigger.payload.field}} and it works. But I need read data from other collection so called it tablex. So I use operation "...