Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
08-09-2022 09:11 PM
Hello,
I've been trying to get past the Adding/Updating a Movie challenge in the Cyber Fundamentals Course for the last 3 hours. When I have tried to do the same project in Sandbox outside of the course, I get the right answer and am able to move forward; however, when I try to submit my answer within the course, I get the "Oops, It looks like you haven't passed the test, please check your answers and try again.If you are stuck, try clicking the Show Hint button," message.
I also tried to use the solution that was provided to finish the question, just to see if it would work, and it gives the same message without explaining what I've done wrong specifically. I have finished every other section of the course and am very frustrated I can't figure anything out with this specific lesson. Please help.
Thanks,
Namu
Solved! Go to Solution.
08-10-2022 05:07 AM
For this challenge to verify, we check that the Movie node with the title Rocketman has the following properties:
matchedAt
createdAt
updatedAt
Keep in mind that property names are case-sensitive.
If you reload the Challenge in your browser, it will reset the graph to what it should be before you started the Challenge.
Elaine
08-10-2022 05:07 AM
For this challenge to verify, we check that the Movie node with the title Rocketman has the following properties:
matchedAt
createdAt
updatedAt
Keep in mind that property names are case-sensitive.
If you reload the Challenge in your browser, it will reset the graph to what it should be before you started the Challenge.
Elaine
08-10-2022 09:33 AM
08-10-2022 10:49 AM
Did you run the Cypher twice as instructed in the Challenge?
Elaine
08-10-2022 11:22 AM
Yes I did, as can be seen in the screenshot I attached.
08-10-2022 01:11 PM
Can you send a screen shot (table view) of this result:
MATCH (m:Movie) WHERE m.title = 'Rocketman' RETURN m
I need to see the values of this node's properties
08-10-2022 01:17 PM
Hi Elaine,
I was able to figure it out. Thank you for your help.
Best,
Namu
08-10-2022 02:17 PM
Excellent!
08-19-2022 07:09 AM
Hi Elaine !
I am also stuck with the same challenge and can't figure out the problem. The properties are as below:
<id> | 173 | |
createdAt | "2022-08-19T13:42:05.075000000Z" | |
matchedAt | "2022-08-19T14:02:45.534000000Z" | |
title | Rocketman | |
updatedAt | "2022-08-19T14:02:45.534000000Z |
08-19-2022 07:10 AM
08-24-2022 05:24 AM
This is the code we use to verify that your graph changes were successful:
MATCH (m:Movie {title: 'Rocketman'})
WHERE m.matchedAt IS NOT NULL
AND m.createdAt IS NOT NULL
AND m.updatedAt IS NOT NULL
RETURN true AS outcome
All the sessions of the conference are now available online