STRAPI CMS: OneToOne Relation Problem from one Collection
so i have the following problem at my strapi project:
I have a Collection called Player (Many Names) and a Component called Substitution.
Inside the Component i want to just select 2 Players from the Players Collection in 2 seperated fields. (PlayerOut, PlayerIn). So i’d say its a normal substitution case, but Strapi can’t handle that i put 2 relations on one Collection.
Strapi Plugin Extension Not Reflecting Custom Endpoint in Admin Panel
I’m trying to extend the users-permissions plugin in Strapi to add a custom endpoint for updating user information. However, the new endpoint is not appearing under the roles and permissions section in the admin panel.
How to get Strapi relantionship fields in lifecycle methods
In my Inventory model, I have two relationships, one for supplier and one for the product. They are both 1 to many with Inventory. My question is how can I get these relationships from the event object that strapi generates in afterCreate
or afterUpdate
method. For example, here’s my code where I want to retrieve supplier and product info from the event object, unfortunately the event object doesn’t seem to have relationship fields, I only get these values:
Is it possible to implement single sign-on feature in the community edition of strapi?
Is it possible to implement single sign on feature using google oauth in strapi community edition.
I saw that their documentation mentions that it is available only in Enterprise edition with gold plan.
However I want to check if there are any alternative ways by which I can implement this feature.
Strapi Route aware global middleware
I’m looking for a way to, in Strapi, include a global middleware, but that has access to the route information, which appears to be absent when using a standard Global middleware, which makes sense as I understand it in the order middlewares are called.
How do I update a bool value of a many to many relation collection in Strapi?
I have this Next.js app where I’m using Strapi as a CMS
How create a “Relation with Role (from: users-permissions)” as in the User Content-type
I have a content type called “setting”, and I would like to control the configure the end-user role by entry. Instead of managing the all content type the same way, I would like something like this:
Strapi api not returning fields
I have a TrustedByBanner component in the published collection type:
How to deploy Strapi project with mysql database on hostinger?
I was working on a project where i have used strapi headless cms for the backend, used mysql as the database. Now i am looking forward to deploy it on hostinger. but i have not found any way there in online. Can anyone guide me on this that how to deploy this project?
How to perform cascade delete of child entities while deleting a parent entity?
When I perform a DELETE request to remove a record, the parent entity gets deleted as expected, but the child entity is not deleted.