condition of FetchXml query not taken account of









up vote
0
down vote

favorite












We are currently installing blogs on our Dynamics 365 Portal.
Wanting to modify the layout of the posts we recreacted a template based on this structure : https://community.adxstudio.com/products/adxstudio-portals/documentation/configuration-guide/liquid-templates/objects/blogs/



Because the adx "post" object doesn't contain tags, we had to use a fetchxml query to get them.



The problem is the query retrieve all the tags :
enter image description hereOnly the Général tag should be showing on the first post only.



Full code :



% assign blog = blogs['Actualités et annonces'] %
% assign posts = blog.posts %
<div class="col-md-8">
<div class="content-panel panel panel-default">
<div class="panel-heading">
% assign sitemarker = sitemarkers["Blog Home"] %
% assign snippet = snippets["Home Blog Activity Heading"] %
<a class="pull-right" href="sitemarker.url"> All Blogs </a>
<h4>
<a class="feed-icon fa fa-rss-square" href=" blogs.feedpath ">
snippet.adx_value
</a><div class="grid-container">
% for post in posts.all %
<div class="grid-item">
<a class="image-header" href=" post.url ">
% if post.new_category %
% assign category = entities.new_vignette[post.new_category.id] %
% assign imgpath = category.new_path %
% elsif post.new_vignette %
% assign imgpath = post.new_vignette %
% else %
% assign imgpath = "../pocfabien/avarap-entete" %
% endif %
<img class="img-responsive img-post" src="imgpath">
</a>
<div class="content-header">
<h4 class="list-group-item-heading">
<a href=" post.url "> post.title </a>
</h4>
<br />
<abbr> post.publish_date </abbr>
</div>
<div class="content-preview">
post.adx_summary
</div>
<div>
% fetchxml tags %
<fetch>
<entity name="adx_tag">
<attribute name="adx_name" />
<attribute name="adx_tagid" />
<link-entity name="adx_blogpost_tag" from="adx_tagid" to="adx_tagid" intersect="true">
<filter>
<condition attribute="adx_blogpostid" operator="eq" value=" post.adx_blogpostid " />
</filter>
</link-entity>
</entity>
</fetch>
% endfetchxml %
% for tag in tags.results.entities %
tag.adx_name
% unless forloop.last % | % endunless %
% endfor %
</div>
<img class="plusign" src="plusign.png">
</div>
% endfor %
</div>
</h4>
</div>
</div>
</div>


PS : if you have a solution to retrieve n:n relationship entities without a fetchXml query I am all ears.










share|improve this question



























    up vote
    0
    down vote

    favorite












    We are currently installing blogs on our Dynamics 365 Portal.
    Wanting to modify the layout of the posts we recreacted a template based on this structure : https://community.adxstudio.com/products/adxstudio-portals/documentation/configuration-guide/liquid-templates/objects/blogs/



    Because the adx "post" object doesn't contain tags, we had to use a fetchxml query to get them.



    The problem is the query retrieve all the tags :
    enter image description hereOnly the Général tag should be showing on the first post only.



    Full code :



    % assign blog = blogs['Actualités et annonces'] %
    % assign posts = blog.posts %
    <div class="col-md-8">
    <div class="content-panel panel panel-default">
    <div class="panel-heading">
    % assign sitemarker = sitemarkers["Blog Home"] %
    % assign snippet = snippets["Home Blog Activity Heading"] %
    <a class="pull-right" href="sitemarker.url"> All Blogs </a>
    <h4>
    <a class="feed-icon fa fa-rss-square" href=" blogs.feedpath ">
    snippet.adx_value
    </a><div class="grid-container">
    % for post in posts.all %
    <div class="grid-item">
    <a class="image-header" href=" post.url ">
    % if post.new_category %
    % assign category = entities.new_vignette[post.new_category.id] %
    % assign imgpath = category.new_path %
    % elsif post.new_vignette %
    % assign imgpath = post.new_vignette %
    % else %
    % assign imgpath = "../pocfabien/avarap-entete" %
    % endif %
    <img class="img-responsive img-post" src="imgpath">
    </a>
    <div class="content-header">
    <h4 class="list-group-item-heading">
    <a href=" post.url "> post.title </a>
    </h4>
    <br />
    <abbr> post.publish_date </abbr>
    </div>
    <div class="content-preview">
    post.adx_summary
    </div>
    <div>
    % fetchxml tags %
    <fetch>
    <entity name="adx_tag">
    <attribute name="adx_name" />
    <attribute name="adx_tagid" />
    <link-entity name="adx_blogpost_tag" from="adx_tagid" to="adx_tagid" intersect="true">
    <filter>
    <condition attribute="adx_blogpostid" operator="eq" value=" post.adx_blogpostid " />
    </filter>
    </link-entity>
    </entity>
    </fetch>
    % endfetchxml %
    % for tag in tags.results.entities %
    tag.adx_name
    % unless forloop.last % | % endunless %
    % endfor %
    </div>
    <img class="plusign" src="plusign.png">
    </div>
    % endfor %
    </div>
    </h4>
    </div>
    </div>
    </div>


    PS : if you have a solution to retrieve n:n relationship entities without a fetchXml query I am all ears.










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      We are currently installing blogs on our Dynamics 365 Portal.
      Wanting to modify the layout of the posts we recreacted a template based on this structure : https://community.adxstudio.com/products/adxstudio-portals/documentation/configuration-guide/liquid-templates/objects/blogs/



      Because the adx "post" object doesn't contain tags, we had to use a fetchxml query to get them.



      The problem is the query retrieve all the tags :
      enter image description hereOnly the Général tag should be showing on the first post only.



      Full code :



      % assign blog = blogs['Actualités et annonces'] %
      % assign posts = blog.posts %
      <div class="col-md-8">
      <div class="content-panel panel panel-default">
      <div class="panel-heading">
      % assign sitemarker = sitemarkers["Blog Home"] %
      % assign snippet = snippets["Home Blog Activity Heading"] %
      <a class="pull-right" href="sitemarker.url"> All Blogs </a>
      <h4>
      <a class="feed-icon fa fa-rss-square" href=" blogs.feedpath ">
      snippet.adx_value
      </a><div class="grid-container">
      % for post in posts.all %
      <div class="grid-item">
      <a class="image-header" href=" post.url ">
      % if post.new_category %
      % assign category = entities.new_vignette[post.new_category.id] %
      % assign imgpath = category.new_path %
      % elsif post.new_vignette %
      % assign imgpath = post.new_vignette %
      % else %
      % assign imgpath = "../pocfabien/avarap-entete" %
      % endif %
      <img class="img-responsive img-post" src="imgpath">
      </a>
      <div class="content-header">
      <h4 class="list-group-item-heading">
      <a href=" post.url "> post.title </a>
      </h4>
      <br />
      <abbr> post.publish_date </abbr>
      </div>
      <div class="content-preview">
      post.adx_summary
      </div>
      <div>
      % fetchxml tags %
      <fetch>
      <entity name="adx_tag">
      <attribute name="adx_name" />
      <attribute name="adx_tagid" />
      <link-entity name="adx_blogpost_tag" from="adx_tagid" to="adx_tagid" intersect="true">
      <filter>
      <condition attribute="adx_blogpostid" operator="eq" value=" post.adx_blogpostid " />
      </filter>
      </link-entity>
      </entity>
      </fetch>
      % endfetchxml %
      % for tag in tags.results.entities %
      tag.adx_name
      % unless forloop.last % | % endunless %
      % endfor %
      </div>
      <img class="plusign" src="plusign.png">
      </div>
      % endfor %
      </div>
      </h4>
      </div>
      </div>
      </div>


      PS : if you have a solution to retrieve n:n relationship entities without a fetchXml query I am all ears.










      share|improve this question















      We are currently installing blogs on our Dynamics 365 Portal.
      Wanting to modify the layout of the posts we recreacted a template based on this structure : https://community.adxstudio.com/products/adxstudio-portals/documentation/configuration-guide/liquid-templates/objects/blogs/



      Because the adx "post" object doesn't contain tags, we had to use a fetchxml query to get them.



      The problem is the query retrieve all the tags :
      enter image description hereOnly the Général tag should be showing on the first post only.



      Full code :



      % assign blog = blogs['Actualités et annonces'] %
      % assign posts = blog.posts %
      <div class="col-md-8">
      <div class="content-panel panel panel-default">
      <div class="panel-heading">
      % assign sitemarker = sitemarkers["Blog Home"] %
      % assign snippet = snippets["Home Blog Activity Heading"] %
      <a class="pull-right" href="sitemarker.url"> All Blogs </a>
      <h4>
      <a class="feed-icon fa fa-rss-square" href=" blogs.feedpath ">
      snippet.adx_value
      </a><div class="grid-container">
      % for post in posts.all %
      <div class="grid-item">
      <a class="image-header" href=" post.url ">
      % if post.new_category %
      % assign category = entities.new_vignette[post.new_category.id] %
      % assign imgpath = category.new_path %
      % elsif post.new_vignette %
      % assign imgpath = post.new_vignette %
      % else %
      % assign imgpath = "../pocfabien/avarap-entete" %
      % endif %
      <img class="img-responsive img-post" src="imgpath">
      </a>
      <div class="content-header">
      <h4 class="list-group-item-heading">
      <a href=" post.url "> post.title </a>
      </h4>
      <br />
      <abbr> post.publish_date </abbr>
      </div>
      <div class="content-preview">
      post.adx_summary
      </div>
      <div>
      % fetchxml tags %
      <fetch>
      <entity name="adx_tag">
      <attribute name="adx_name" />
      <attribute name="adx_tagid" />
      <link-entity name="adx_blogpost_tag" from="adx_tagid" to="adx_tagid" intersect="true">
      <filter>
      <condition attribute="adx_blogpostid" operator="eq" value=" post.adx_blogpostid " />
      </filter>
      </link-entity>
      </entity>
      </fetch>
      % endfetchxml %
      % for tag in tags.results.entities %
      tag.adx_name
      % unless forloop.last % | % endunless %
      % endfor %
      </div>
      <img class="plusign" src="plusign.png">
      </div>
      % endfor %
      </div>
      </h4>
      </div>
      </div>
      </div>


      PS : if you have a solution to retrieve n:n relationship entities without a fetchXml query I am all ears.







      dynamics-crm crm dynamics-crm-online dotliquid adxstudio-portals






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 9 at 16:47









      David Jacquel

      36.3k273103




      36.3k273103










      asked Nov 9 at 16:19









      Florent

      243




      243



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53229505%2fcondition-of-fetchxml-query-not-taken-account-of%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53229505%2fcondition-of-fetchxml-query-not-taken-account-of%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kleinkühnau

          Makov (Slowakei)

          Deutsches Schauspielhaus