I am trying to implement Smart Slider 3 Wordpress plugin into my Gatsby site. Up until now I've been using "gatsby-source-wordpress" plugin to query wordpress API endpoints using GraphQL. It works fine for posts/pages etc.
However, I am using Smart Slider REST API plugin to query this end point:
/wp-json/smartslider3/v1/sliders/<slider-id>
I can see the response in the browser but I am not sure how to get the results using GraphiQL. Normally I was able to see new endpoints such as "allWordpressPost" etc.
In gatsby-source-wordpress plugin config there are included routes array that needs to be updated to be able to query new endpoints. Example:
"**/categories",
"**/posts",
"**/pages",
"**/media",
Therefore I've added this one "**/sliders", but seems like I can't get results to show in GraphiQL.