{
LET $books := document("data/books.xml")//book
FOR $book IN $books
LET $chapters := document($book/@href)//chapter
RETURN
{$book/title}
{
FOR $chapter IN $chapters
RETURN
{$chapter/title}
}
}
I'm getting following error
books.xml and oopXML.xml are both in same directory i.e data
Are these functions
id(IDREF), idref(string) implemented in QUIP?
Your help is greatly appreciated!
Thanks