Documents About the Coil
Which document types reference part IC-2042-A?
-
❏ Only the Falcon service manual
-
❏ A manual and a bulletin
-
✓ A manual, a bulletin, and a recall notice
-
❏ Only bulletins
Hint
Run the "All documents that reference a part" query with IC-2042-A and look at the type column.
Solution
The correct answer is a manual, a bulletin, and a recall notice.
The Falcon Service Manual, bulletin TSB-21-114, and recall RC-2021-04 all reference IC-2042-A.
The shared part number connects three document types that never cite each other.
Brake Guidance
Adapt the part-centred query to part BP-7720 (the front brake pad kit).
Which bulletin references it?
-
❏ TSB-21-114
-
✓ TSB-22-031
-
❏ TSB-20-087
-
❏ TSB-23-052
Hint
Change the partNumber value in the query to BP-7720 and look for the row with type Bulletin.
Solution
The correct answer is TSB-22-031 - "Front Brake Judder After Pad Replacement".
MATCH (d:Document)-[:HAS*]->(s:Section)
-[:REFERENCES_PART]->(p:Part {partNumber: 'BP-7720'})
RETURN d.docType AS type, d.title AS document, collect(s.displayName) AS sectionsThe part also appears in the Falcon and Heron service manuals - three documents in total.
Summary
You navigated the document graph:
-
Tree walks -
[:HAS_SECTION*]produces a table of contents keyword search cannot -
Part-centred views - one query collects every document type covering a part
-
Explainable links -
LINKS_TOtraversals return connected, justified context
In the next module, you will run community detection over these links to surface the themes nobody named.