Skip to content

Instantly share code, notes, and snippets.

View DvirSela's full-sized avatar

Dvir Sela DvirSela

View GitHub Profile
import strawberry
from fastapi import FastAPI
from strawberry.fastapi import GraphQLRouter
from fastapi.middleware.cors import CORSMiddleware
from ..graphql.core import Query
allowedCorsOrigins = [
"http://localhost:5173",
]