# rele **Repository Path**: mirrors_vslinko/rele ## Basic Information - **Project Name**: rele - **Description**: [EXAMPLE PROJECT] Rele is mix of Relay concept and Flummox library - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Rele > Rele is mix of Relay concept and Flummox library. ## Example ``` npm install npm start & open http://localhost:3000 ``` ## QL Example ```js import {ql} from 'rele'; import {print} from 'rele/utils'; const userSpec = ql` User { name, avatar } `; const groupSpec = ql` Group { name, users { ${userSpec()} } } `; const groupsPageQuery = ql` groups(page: ${1}) { ${groupSpec()}, users : User { isAdmin } } `; console.log(print(groupsPageQuery())); /* Normalized query: groups(page: 1) : Group { name, users : User { isAdmin, name, avatar } } */ ```