stack overflow community i am relatively new for arango and wants to build an AQL query using two collection please help me
first collection :- user JSON :- "user_id": "abcd", "program_info": [ { "program_id": 101, } ]
Second collection :- program JSON :- { "program_id":101, "program_name": "test" }
i am building query to get info of program name using both collection if user_id will supplied FOR u IN user FILTER u.user_id =="abcd" FOR p IN program FILTER p.program_id == u.program_info[*].program_id RETURN p.program_name
but i am getting blank [] array please help me