Let’s Talk

We would love to hear from you. Want to know more about
our services or have any questions? Say Hi!

JSS application feature was not registered with Sitecore

April 05, 2023
JSS application feature was not registered with Sitecore
Mitesh Patel
Mitesh Patel
Technical Head
jss-app-feature-not-registered-with-sitecore-error-solved

Sitecore provides a schema for items by default (also allowing you to query items from the content tree) as well as Search (which allows you to query items through the Search) on which you can write your own queries.

To check that, you can open the GraphQL editor.

(https://domain+/sitecore/api/graph/edge/ui) provides sc_apikey in the header. On the right side of the editor you will be able to see schemas.

jss-app-feature-not-registered-with-sitecore-error-solved-1

Now, you have to check this data in the layout API. Sitecore JSON rendering usually provides a GraphQL editor so you can write your queries to get the data as per your needs and requirements. You can see the GraphQL editor as is show in the below image.

jss-app-feature-not-registered-with-sitecore-error-solved-2

When you will try to open the GraphQL editor from there, sometimes you can also get the below mentioned error.

jss-app-feature-not-registered-with-sitecore-error-solved-3
  1. To resolve this, you can keep in mind a few steps

    Get the application name from the jss-app.config file because we are using that very same name in the below given steps.

  2. Go to the path Sitecore/Layout/Rendering/Project in your Sitecore instance and make a folder with your application name that we got from the first step.

    jss-app-feature-not-registered-with-sitecore-error-solved-4
  3. Try to create a new JSON rendering inside of the project folder which we have created in the second step.

  4. Now, click on the Open xGraph browser and you will easily be able to find the GraphQL editor.

In conclusion, this is how you will be able to resolve the above error and can work on the GraphQL editor.


YOU MAY ALSO LIKE