Linear Performance Tuning Overview Optimize Linear API usage for minimal latency and efficient resource consumption. The three main levers are: (1) query flattening to avoid N+1 and reduce complexity, (2) caching static data with webhook-driven invalidation, and (3) batching mutations into single GraphQL requests. Key numbers: - Query complexity budget: 250,000 pts/hour, max 10,000 per query - Each property: 0.1 pt, each object: 1 pt, connections: multiply by - Best practice: sort by to get fresh data first Prerequisites - Working Linear integration with - Understanding of GraphQL query struc…