# HG changeset patch # User Emile Anclin # Date 1238665842 -7200 # Node ID 76de1c3aaef3368f00d7a5b33bc41ba30d329634 # Parent 90bb6e89e356872b041fe10da8d4008f4b9a9866 [doc] RQL: a note about specifying several types diff -r 90bb6e89e356 -r 76de1c3aaef3 doc/book/en/C040-rql.en.txt --- a/doc/book/en/C040-rql.en.txt Thu Apr 02 11:42:58 2009 +0200 +++ b/doc/book/en/C040-rql.en.txt Thu Apr 02 11:50:42 2009 +0200 @@ -140,6 +140,14 @@ X is Person, X name N, X first_name P + Note: You can not specify several types with * ... where X is FirstType or X is SecondType*. + To specify several types explicitely, you have to do + + :: + + Any X where X is in (FirstType, SecondType) + + Insertion query ---------------