Articy Forum


https://www.articy.com:443/forum/

Listing Flow Fragments

https://www.articy.com:443/forum/viewtopic.php?f=47&t=18282

Page 1 of 1

Listing Flow Fragments

Posted: Thu 9. Nov 2017, 10:01
by Julen
Is there a way to get all FlowFragment ObjectProxies without knowing the name nor ID of these?
I don't find any getFlows nor related method in the API.
Thanks in advance.

Re: Listing Flow Fragments

Posted: Fri 10. Nov 2017, 16:11
by [Articy] Peter Sabath
Hi Julen,

that is quite easy using the articy:draft - Query Language

Code: Select all
var result = Session.RunQuery("SELECT * FROM Flow WHERE ObjectType=FlowFragment");
foreach ( var obj in result.Rows )
{
    // to what you want with your object 'obj'
}


You can write quite complex queries to collect your objects. In your case the above query does the job. The values for "ObjectType" are the elements of the enum ObjectTypes as shown here

-Peter

Re: Listing Flow Fragments

Posted: Mon 20. Nov 2017, 10:45
by Julen
Thank you so much,
this is quite easier than iterating all nodes and sorting them by type manually :D

-Julen

All times are UTC
Page 1 of 1