SQL Queries
Use SQL queries to access the data in the store
Overview
SELECT
Example
const response = await fetch('/joule/query/nasdaq_quotes/quotes}', {
method: 'GET',
headers: {},
});
const data = await response.json();Last updated