Nilay
07/26/2023, 1:38 AMNikcio
07/26/2023, 4:18 AMSebastiaan
07/26/2023, 7:25 AMNilay
07/26/2023, 8:37 AMNilay
07/26/2023, 8:37 AMNilay
08/01/2023, 11:29 AMNilay
08/01/2023, 11:29 AMNikcio
08/01/2023, 11:31 AMbuilder.UseContentQueries()
Nikcio
08/01/2023, 11:32 AMGraphQLExtensions
or is this pure default?Nikcio
08/01/2023, 1:44 PMNilay
08/02/2023, 3:09 AMNikcio
08/02/2023, 4:17 AMbuilder.UseMediaQueries();
for it to work. I'll problerly need to push a bug fix. Because that's not how it's supposed to workπ
Nilay
08/02/2023, 5:25 AMNilay
08/02/2023, 5:25 AMNikcio
08/02/2023, 6:06 AMIRequestExecutorBuilder
is from HotChocolate which is used to run the underlying GraphQL ServerNikcio
08/02/2023, 6:07 AMNikcio
08/02/2023, 6:08 AM.UseContentQueries()
or .UseMediaQueries()
extension π
Nilay
08/02/2023, 6:23 AMNilay
08/02/2023, 9:43 AMNilay
08/02/2023, 9:44 AMNikcio
08/02/2023, 12:48 PMNikcio
08/02/2023, 12:51 PMNikcio
08/02/2023, 12:52 PMNikcio
08/02/2023, 12:52 PMNilay
08/03/2023, 6:35 AMNilay
08/03/2023, 6:35 AMNilay
08/03/2023, 6:36 AMNilay
08/03/2023, 6:36 AMNilay
08/03/2023, 6:36 AMNilay
08/03/2023, 6:36 AM{
"data": {
"contentByGuid": {
"name": "Navigation",
"createDate": "2022-05-18T03:39:36.000+05:30",
"creatorId": -1,
"urlSegment": "navigation",
"url": "/navigation/",
"absoluteUrl": "https://localhost:44328/navigation/",
"children": [],
"namedProperties": {
"__typename": "DG_Navigation"
},
"properties": [
{
"alias": "mainNavigation",
"value": {
"model": "BasicMultiUrlPicker"
},
"editorAlias": "Umbraco.MultiUrlPicker"
},
{
"alias": "displaySubPages",
"value": {
"model": "BasicPropertyValue"
},
"editorAlias": "Umbraco.TrueFalse"
},
{
"alias": "socialIconHeading",
"value": {
"model": "BasicPropertyValue"
},
"editorAlias": "Umbraco.TextBox"
},
{
"alias": "socialLinks",
"value": {
"model": "BasicBlockListModel"
},
"editorAlias": "Umbraco.BlockList"
},
{
"alias": "isDisplaySocialIconsOnTopHeader",
"value": {
"model": "BasicPropertyValue"
},
"editorAlias": "Umbraco.TrueFalse"
},
{
"alias": "footerNavigation",
"value": {
"model": "BasicBlockListModel"
},
"editorAlias": "Umbraco.BlockList"
},
{
"alias": "footerNavLink",
"value": {
"model": "BasicMultiUrlPicker"
},
"editorAlias": "Umbraco.MultiUrlPicker"
}
]
}
}
}
Nilay
08/03/2023, 6:37 AMSebastiaan
08/03/2023, 6:52 AMNilay
08/03/2023, 7:44 AMNikcio
08/03/2023, 7:50 AMProperties
property in the request always gives you all properties on a content node in the format you're seeing where you specify more generally what data you want. If you have one specific property you want the value of I would suggest using NamedProperties
this works by selecting a composition or content type and on all content you request if it has that composition or content type you can get the property value. See more at: https://nikcio.github.io/Nikcio.UHeadless/v4/fundamentals/querying/properties/