flipsidecrypto⚡️ LQ / Snapshot LiveQuery Function Guide
    -- Snapshot 🤝 Flipside LiveQuery Function Guide
    -------------------------------------------------------------------------
    -- The Snapshot LiveQuery integration enables you to interact with
    -- any Snapshot API endpoint directly in SQL.

    -- ======================================================================
    --
    -- ⚡️ Snapshot Functions
    -- schema: `snapshot`
    -- function docs: https://docs.snapshot.org/tools/api
    --
    -- ======================================================================

    --
    -- #️⃣ snapshot.query('url', 'query args')
    -- Issue a GraphQL Query to Snapshot
    --
    -- examples:
    --
    SELECT snapshot.query({
    'query': '{
    space(id: "snapshot.dcl.eth") {
    id
    name
    members
    }
    }',
    'variables': {}
    }) as resp

    Run a query to Download Data