We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have 2 locales in my account: locale X and locale Y. (locale X is default)
I have a contentful Model "Page" which contains: field pageField1 field pageField2 field item <--- localization enabled
the Model "Item" also have 3 fields: field 1 field 2 field 3 <--- localization enabled
when try to use getEntries to get Page with locale Y, it should return the:
pageField1 (locale X) pageField2(locale X) item (locale Y): field1 (locale X) field2 (locale X) field3 (locale Y)
it actually returns:
pageField1 (locale X) pageField2(locale X) item (locale Y): field3 (locale Y)
field 1 and field2 is missing in the response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected Behavior
I have 2 locales in my account: locale X and locale Y. (locale X is default)
I have a contentful Model "Page" which contains:
field pageField1
field pageField2
field item <--- localization enabled
the Model "Item" also have 3 fields:
field 1
field 2
field 3 <--- localization enabled
when try to use getEntries to get Page with locale Y,
it should return the:
pageField1 (locale X)
pageField2(locale X)
item (locale Y):
field1 (locale X)
field2 (locale X)
field3 (locale Y)
Actual Behavior
it actually returns:
pageField1 (locale X)
pageField2(locale X)
item (locale Y):
field3 (locale Y)
field 1 and field2 is missing in the response
The text was updated successfully, but these errors were encountered: