ContributionsMost RecentMost LikesSolutionsDelay loading a Component on a page until initial endpoint call has completed We want to use an end point to contact Zendesk via API to then assign a role back into Lithium for a user. We want a component (Contact US) in the page to display different options based on that newly assigned role, but we currently have to reload the page to have it display the options. Is there a way to cause that component to wait without doing a whole page reload? We would like to wait to load the component until that endpoint has completed and then display the options in one complete experience. Curious if there are any ideas. Re: LiQL question about selecting from ancestor category Hi TariqHussain, So the Japan category is the top parent category and there are multiple subcategories within "Japan". I'm looking for all labels within Japan including all the categories underneath Japan. With your query, would that pull all the labels in the Japan category as well as the subcategories below? I thought that's why I needed to refer and use the ancestorcategory statement. Appreciate the help and your clarification! LiQL question about selecting from ancestor category Hello I'm trying to select the top 5 TKB articles with a specific label, but only within our Japan Category not our English category. I'm not sure how to include the ancestor_categories.id field when pulling from the messages table, and I don't believe the way I'm doing it below is correct. SELECT subject, view_href FROM messages WHERE labels.text='example' AND conversation.style='tkb' AND conversation.featured = false AND ancestor_categories.id = 'Japan' ORDER BY metrics.views DESC LIMIT 5" /> Can anyone help out? Appreciate any quick responses our suggestions! Solved