Using the Graph API you can get only the name, category and the number of users who like a page. No description.
If you want to get more info about that page you have available the page table. Using this you can get not only the info available through API, but many others including picture, type, website, company overview, mission, products etc.
In order to query this table you have to use FQL, and a query might look like this:
SELECT pic, type, website, company_overview, mission, products, location FROM page WHERE page_id=YOUR_PAGE_ID
Documentation for this table is available here and how to execute FQL queries using your library is available on the page you provided at the end of your question.
Good luck !