We are going to migrate to the Graph API in FQL.
Using the name of the query conditions to query albumid/objectid.
FQL syntax used to do the following:
SELECT aid, object_id
FROM album
WHERE owner=0000 AND name=abcd
ORDER BY modified DESC LIMIT 1
Is it possible to implement Graph API in the same way?
No, that's not possible unfortunately. There are no filtering methos available. You'll have to query for all albums and then filter in your application, and then query for the
album_idyou selectedE.g.