feat: Initial NodeByUri logic and frontend
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fragment BuilderSections on GroupAbstractBuilder_Fields {
|
||||
sections {
|
||||
__typename
|
||||
... on GroupAbstractBuilderSectionsTextBlockLayout {
|
||||
... SectionTextBlock
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import type { BuilderSectionsFragment } from "#graphql/typed-documents";
|
||||
|
||||
defineProps<BuilderSectionsFragment>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<pre>{{ sections }}</pre>
|
||||
</template>
|
||||
Reference in New Issue
Block a user