Re: [xdi] XDI Querier update

From
Markus Sabadello <>
Date
2008-04-18T17:41:02+00:00
ID
Thread
Re: [xdi] XDI Querier update
Hmm no, right now the query engine only selects input statements that fully match a query statement. So if a query statement contains only a subject and a predicate, then it will only select input statements with only subject and predicate, not input statements with subject, predicate and something else.

So even if you just want to know everything about =giovanni, you would have to enter

=giovanni
    $$
        $$

instead of just

=giovanni

The latter will only work in my implementation of XDI messaging, but not in the XDI query engine.

But maybe it should work that way too?

Markus

On Fri, Apr 18, 2008 at 6:20 PM, Giovanni Bartolomeo <> wrote:

Hello Markus,

thanks for this update. It has been great to see the querier at work yesterday!

Simple question regarding this query:

At 00.43 18/04/2008, Markus Sabadello wrote:

=giovanni

    +friend

        $$1

($$1/+age)

    $equals$or$lesser

        "26"

$$1

    +sister

        $$2

$$2

    +nationality

        $$

($$2/+nationality)

    $equals

        "Italian"

is it the same to ask

$$2

   +nationality

instead of

$$2

   +nationality

        $$

?

Giovanni