I have table (user_page_cells) displayed with the following query:
SELECT tag_id, nid
FROM user_page_cells WHERE nid = 1;
It gives me the results:

I also have a table (graph_tags):
SELECT *
FROM graph_tags where page_node = 1
which gives me the results:
.
user_page_cells.nid and graph_tags.page_node both reference page nodes.
I need a query that will display my first query results
(SELECT tag_id, nid FROM user_page_cells WHERE nid = 1;)
with one extra column. This column needs to have the default_graph_tag_id from the second table (graph_tags) if nid = page_node or a NULL at all if it doesn't.
I have tried using LEFT, RIGHT, FULL OUTER JOIN but I cannot get the results I am looking for.
Here is an example of the query I thought would work.
SELECT user_page_cells.tag_id, graph_tags.default_graph_tag_id
FROM user_page_cells
LEFT OUTER JOIN graph_tags ON user_page_cells.nid = graph_tags.page_node
WHERE user_page_cells.nid = 1.
I always get this no matter if LEFT, RIGHT, or FULL is used;

Can anyone point me in the right direction?
Thank you