82 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
13
views
How to fetch entries of a specific type that directly or indirectly refer to an entry
Let's say there's a Content Model which includes three content types: RootNode, Node, Leaf. As the names imply, content type RootNode includes fields nodes and leafs which respectively includes zero-...
0
votes
0
answers
53
views
In Contentful API, the default sort ordering for full text search is returned by updatedTime rather than by relevance
I have 3 content models and I am trying to perform a full text search based on relevance and based on most recent (updated time) in two separate cases.
{
query: 'test',
'sys.contentType.sys.id[in]'...
0
votes
1
answer
27
views
Using 'sys.contentType.sys.id[in]' along with 'order' does not work in Contentful API
I have 3 content models - 'Article', 'Supplier Showcase' and 'Landing page'. Performing search operation with order works when using queries with individual models such as
{
query: 'PVD',
...
0
votes
0
answers
61
views
Contentful multiple content types filtering
I've an Intros content type in Contentful, and this is some portion of the JSON representation of the content type
{
"name": "Intros",
"description": "Inserted ...
0
votes
1
answer
75
views
Localized image field not returned for 'uk' locale in Contentful
I'm working with Contentful (React + React Query app) and I’ve run into an issue with localized images.
I have entries in Contentful of the type ConferenceCoChairs, which include the fields pib, ...
0
votes
1
answer
117
views
Fetching single image from Contentful
I am currently able to display all my images and titles on my products page of my react project.
Now I would like to create a single product page when I click on a item.
This is the function I am ...
0
votes
0
answers
239
views
Why does Contentful Delivery API sometimes return Child References as type "Link" rather than "Entry" after 3-4 weeks?
After 3-4 weeks, when fetching Contentful data via Contentful Delivery API, I noticed that most child references show up as "type": "Link" instead of "type": "Entry&...
1
vote
1
answer
195
views
Contentful GraphQL collection filter for a Link field with two content types
I've Referral content type which has excludedClient field which is a Link(Many references) and it consists of Client | Client Group content types.
Both Client & Client Group content types has ...
0
votes
1
answer
105
views
Contentful UI extension to intercept unpublishing
Is there a way to use Contentful’s App framework to intercept the unpublish feature? For example, I’m trying to make it so someone has to specify why they are unpublishing content which then goes to a ...
1
vote
2
answers
711
views
Sorting posts by creation date with Contentful
I'm using Contentful to manage blog posts for a site I'm making.
I set up the content model and have it displaying well on my page, but if I update an old post it moves it to the top of the page.
They'...
2
votes
2
answers
2k
views
Is this approach to fix a typing error between typescript and Contentful's content delivery API safe?
I'm using Astro and Contentful to make a blog. I have a content type called author which has 3 fields.
Name
Field Type
Full Name
Short text
Headshot
Media
Bio
Rich Text
I'm working on creating a ...
0
votes
1
answer
119
views
Contentful PHP API: how to get just one single entry?
I'm using this code to get all my content in Contentful (they are projects and within each project a gallery of images) for a simple portfolio website.
$client = new \Contentful\Delivery\Client('xxx-...
0
votes
1
answer
111
views
Render image from Contentful to Angular
i have a problem displaying the images i upload to contentful on my angular site.
From the browser console the image is correctly loaded but I see a blank image on the screen.
Below my code:
...
0
votes
2
answers
664
views
Contenful API gives TypeError: client.getEntry is not a function
Trying to use contentfil entry with API but getting some error TypeError: client.getEntry is not a function . Everything seems good, googled a lot but did not find any answer.
const ...
1
vote
1
answer
883
views
How to update a content's status using API in contentful.com
I have created a content in contentful.com. Was going through the api document, I tried the GET API to access the content, but i don't see edit/update content API anywhere in the document. Has anyone ...