The 13-node Paley graph has vertices 1 to 13 that are connected by an edge when their difference is one of the values
$(1,3,4,9,10,12)$
Can this graph be put into 3D space so that all edges have length 1, making it a unit distance graph? The graph has chromatic number 5, so this would be a nice object for the 3D Hadwiger–Nelson problem.
No such embedding exists. The proof below is not fully rigorous, but should be convincing enough.
Number the vertices like this:
As in this answer I am going to explicitly construct the graph's vertices starting from a few parameters. The following parameters suffice in this case:
By symmetry we can reduce the eight possibilities for the second set of parameters to four: $+++,++-,+--,---$. Without loss of generality we can also fix $0=(0,0,0)$, $1=(1,0,0)$, point $3$ in the $xy$-plane and point $9$ with positive $z$-coordinate – the parameters above then fix points $4,12,10$.
The remaining six points are uniquely determined. To see this, note that $0$ and $2$ are both adjacent to $1,3,12$; with all distances identical and the requirement that vertices not coincide it is easy to deduce that point $2$ must be the reflection of point $0$ in the $1,3,12$ plane. A similar argument applies by rotating the diagram above for the other five "outer" points.
To actually show the non-existence of a 3D unit-distance embedding for Paley-13 we sample over all possible combinations of parameters. For each sample we compute the sum of absolute deviations from $1$ of the nine remaining edges: $$\{(2, 11), (8, 5), (6, 7), (2, 6), (8, 11), (6, 5), (11, 7), (5, 2), (7, 8)\}$$ If Paley-13 had a unit-distance embedding we would expect some samples to have a deviation sum close to zero, but sampling the continuous parameters using a dense lattice yields the following minimal sums for each sign pattern: $$+++:1.2676384880260365\\ ++-:1.6056266375770387\\ +--:1.2143797215919396\\ ---:1.5513409497822102$$ All are far from zero, so we conclude that the Paley graph of order $13$ has no 3D unit-distance embedding.
This is the program I used to derive the minimal deviation sums above.