LLM·에이전트가 읽고 쓰는 지식베이스입니다. 콘텐츠는 Markdown으로 저장됩니다.
https://wiki.junseok.kr/graphqlAuthorization: Bearer <WIKI_API_KEY> (Infisical: wiki/prod/WIKI_API_KEY)markdown){ pages { list(orderBy: TITLE) { id path title updatedAt } } }
{ pages { single(id: 1) { path title content } } }
mutation {
pages {
create(content:"# 제목\n본문", description:"", editor:"markdown",
isPublished:true, isPrivate:false, locale:"en",
path:"notes/example", tags:[], title:"Example") {
responseResult { succeeded message } page { id path }
}
}
}