Limited spots available

Join the Waitlist

Be among the first to experience enterprise Drupal meets modern headless architecture. Get early access, exclusive pricing, and priority onboarding.

Early access benefits

Join the waitlist and get exclusive advantages

Early access pricing
Priority onboarding
Exclusive features
Direct support channel
Influence product roadmap
Founding member status

Why join the waitlist?

Be part of something special from day one

Early Access

Get access before the public launch and start building immediately with exclusive pricing and features.

Shape the Product

Your feedback will directly influence our roadmap. Help us build the platform you need.

VIP Support

Priority onboarding and direct access to our team. We'll make sure you succeed.

Start fetching content immediately

Copy-paste examples to get your Next.js app connected

lib/drupal.ts
// Fetch content with GraphQL
export async function getArticles() {
  const query = `
    query Articles {
      nodeArticles(first: 10) {
        edges {
          node {
            id
            title
            body {
              processed
            }
            created
          }
        }
      }
    }
  `;

  const response = await fetch(process.env.DRUPAL_GRAPHQL_URL, {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({ query }),
    next: { revalidate: 60 } // Cache for 60 seconds
  });

  const { data } = await response.json();
  return data.nodeArticles.edges.map(edge => edge.node);
}

Secure your spot

Limited spots available for early access

We'll contact you as soon as spots become available