Skip to content

Latest commit

 

History

History

backend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Backend

Apollo GraphQL

You can interact with the schema using the Apollo Explorer

  1. Install the required dependencies for the backend

    pnpm install
  2. Run the server

    • From interplanetaryfonts/interplanetaryfonts.xyz/backend/
      nodemon src/index
    • From interplanetaryfonts/
      pnpm run dev:backend
  3. Open localhost:4000

    • Press the Query your server button (if not automatic)
  4. Start querying

    query Fonts {
        fontProjects {
            id
            name
            description
            perCharacterMintPrice
            creator {
                address
            }
            idaRoyaltyIndex
            launchDateTime
            createdAt
            updatedAt
            fontFilesCID
            mintings
            distributionToken
        }
    }