We are using wordpress as headless CMS and trying to consume all it's data by graphql. For this we are using nodeByUri to get data for posts and pages by it's Uri (following this article: hidden link). Our default language is set as English. This is working for English Uri but not for translated Uri.
for example, nodeByUri(uri: "example-page") is working but nodeByUri(uri: "de/beispielseite") returned null.
This also apply in frontpage also. nodeByUri(uri: "/") is working but nodeByUri(uri: "de/") returned null.
But posts are working for both default and translated language.